r22750 by jghali - more refactoring for Annotation class
scribus-commit
scribus-commit at lists.scribus.net
Thu Nov 1 14:14:52 UTC 2018
Author: jghali
Date: Thu Nov 1 14:14:52 2018
New Revision: 22750
URL: http://scribus.net/websvn/listing.php?repname=Scribus&sc=1&rev=22750
Log:
more refactoring for Annotation class
Modified:
trunk/Scribus/scribus/annotation.h
Modified: trunk/Scribus/scribus/annotation.h
URL: http://scribus.net/websvn/diff.php?repname=Scribus&rev=22750&path=/trunk/Scribus/scribus/annotation.h
==============================================================================
--- trunk/Scribus/scribus/annotation.h (original)
+++ trunk/Scribus/scribus/annotation.h Thu Nov 1 14:14:52 2018
@@ -149,20 +149,20 @@
void setRollOver(const QString& newRollOver) { m_rollOver = newRollOver; }
void setDown(const QString& newDown) { m_down = newDown; }
void setBorderColor(const QString& newBorderColor) { m_borderColor = newBorderColor; }
- void setBorderWidth(int newBwid) { m_borderWidth = newBwid; }
- void setBorderStyle(int newBsty) { m_borderStyle = newBsty; }
+ void setBorderWidth(int newBorderWidth) { m_borderWidth = newBorderWidth; }
+ void setBorderStyle(int newBorderStyle) { m_borderStyle = newBorderStyle; }
void setFeed(int newFeed) { m_feed = newFeed; }
void setFlag(int newFlag) { m_flag = newFlag; }
void addToFlag(int dFlag) { m_flag += dFlag; }
- void setMaxChar(int newMaxChar) { m_maxChar=newMaxChar; }
+ void setMaxChar(int newMaxChar) { m_maxChar = newMaxChar; }
void setVis(int newVis) { m_vis = newVis; }
void setFont(int newFont) { m_font = newFont; }
void setChkStil(int newChkStil) { m_chkStil = newChkStil; }
void setFormat(int newFormat) { m_format = newFormat; }
void setIsChk(bool newIsChk) { m_isChk = newIsChk; }
- void setCheckState(bool newIsChk) { tmp_Chk = newIsChk; }
+ void setCheckState(bool newCheckState) { tmp_Chk = newCheckState; }
void setOpen(bool newIsOpen) { is_Open = newIsOpen; }
- void setOnState(bool newIsChk) { on_State = newIsChk; }
+ void setOnState(bool newOnState) { on_State = newOnState; }
void setAAact(bool newAAct) { m_aAact = newAAct; }
void setHTML(int newHTML) { m_html = newHTML; }
void setUseIcons(bool newUseIcons) { m_useIcons = newUseIcons; }
More information about the scribus-commit
mailing list