diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-11-12 08:35:21 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-11-12 08:36:04 +0100 |
commit | 1ea8188fa1669bcbc9e04803216fd9227adf6b11 (patch) | |
tree | cdfc267ddec69d10dbf0d018e28a9947f6bd23c6 /sw/inc/viewopt.hxx | |
parent | 9f19d2425bd0b07f384967f4e2aec0a83e45ab88 (diff) |
sw: prefix members of SwViewOption
Change-Id: Ia86aac05e67990bd47400dc7aabbedde278e4fd1
Diffstat (limited to 'sw/inc/viewopt.hxx')
-rw-r--r-- | sw/inc/viewopt.hxx | 48 |
1 files changed, 24 insertions, 24 deletions
diff --git a/sw/inc/viewopt.hxx b/sw/inc/viewopt.hxx index 5055992f36b6..a3cf5b317eed 100644 --- a/sw/inc/viewopt.hxx +++ b/sw/inc/viewopt.hxx @@ -103,29 +103,29 @@ namespace svtools{ class ColorConfig;} class SW_DLLPUBLIC SwViewOption { - static Color aDocColor; // color of document boundaries - static Color aDocBoundColor; // color of document boundaries - static Color aObjectBoundColor; // color of object boundaries - static Color aAppBackgroundColor; // application background - static Color aTableBoundColor; // color of table boundaries - static Color aFontColor; - static Color aIndexShadingsColor; // background color of indexes - static Color aLinksColor; - static Color aVisitedLinksColor; - static Color aDirectCursorColor; - static Color aTextGridColor; - static Color aSpellColor; // mark color of online spell checking - static Color aSmarttagColor; - static Color aFieldShadingsColor; - static Color aSectionBoundColor; - static Color aPageBreakColor; - static Color aScriptIndicatorColor; - static Color aShadowColor; - static Color aHeaderFooterMarkColor; - - static sal_Int32 nAppearanceFlags; + static Color m_aDocColor; // color of document boundaries + static Color m_aDocBoundColor; // color of document boundaries + static Color m_aObjectBoundColor; // color of object boundaries + static Color m_aAppBackgroundColor; // application background + static Color m_aTableBoundColor; // color of table boundaries + static Color m_aFontColor; + static Color m_aIndexShadingsColor; // background color of indexes + static Color m_aLinksColor; + static Color m_aVisitedLinksColor; + static Color m_aDirectCursorColor; + static Color m_aTextGridColor; + static Color m_aSpellColor; // mark color of online spell checking + static Color m_aSmarttagColor; + static Color m_aFieldShadingsColor; + static Color m_aSectionBoundColor; + static Color m_aPageBreakColor; + static Color m_aScriptIndicatorColor; + static Color m_aShadowColor; + static Color m_aHeaderFooterMarkColor; + + static sal_Int32 m_nAppearanceFlags; protected: - static sal_uInt16 nPixelTwips;// 1 Pixel == ? Twips + static sal_uInt16 m_nPixelTwips;// 1 Pixel == ? Twips OUString m_sSymbolFont; // Symbolfont. sal_uInt32 m_nCoreOptions; // Bits for SwViewShell. @@ -167,7 +167,7 @@ protected: bool m_bTest6 :1; // Test-flag "No screen adj" bool m_bTest7 :1; // Test-flag "win format" bool m_bTest8 :1; // Test-flag "" - static bool s_bTest9; // Test-Flag "DrawingLayerNotLoading" + static bool m_bTest9; // Test-Flag "DrawingLayerNotLoading" bool m_bTest10 :1; // Test-Flag "Format by Input" #endif @@ -178,7 +178,7 @@ public: static void Init( vcl::Window *pWin ); // Initializing of static data. - static sal_uInt16 GetPixelTwips() { return nPixelTwips; } + static sal_uInt16 GetPixelTwips() { return m_nPixelTwips; } inline sal_uInt32 GetCoreOptions() const {return m_nCoreOptions;} inline void SetUIOptions( const SwViewOption& ); |