diff options
author | Armin Le Grand <alg@apache.org> | 2013-05-07 09:37:01 +0000 |
---|---|---|
committer | Armin Le Grand <alg@apache.org> | 2013-05-07 09:37:01 +0000 |
commit | c17e634e125f524d153e1ad8febff6d11b810ee4 (patch) | |
tree | 7c4072f77412b9733b52d32b3d3e27c19918717f /vcl/inc | |
parent | 664f4d882129c98d502463e08ce601259b85fc8c (diff) |
i122120 corrected flag for drawing checkerboards, adapted previews, added to configuration
Notes
Notes:
merged as: 60446a0386b6d40899f6817c9545414841ee3522
Diffstat (limited to 'vcl/inc')
-rw-r--r-- | vcl/inc/vcl/settings.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/vcl/inc/vcl/settings.hxx b/vcl/inc/vcl/settings.hxx index e9f0f0e6779f..f8232886828a 100644 --- a/vcl/inc/vcl/settings.hxx +++ b/vcl/inc/vcl/settings.hxx @@ -440,7 +440,7 @@ private: Size maListBoxPreviewDefaultLogicSize; Size maListBoxPreviewDefaultPixelSize; sal_uInt16 mnListBoxPreviewDefaultLineWidth; - sal_Bool mbUIPreviewUsesCheckeredBackground; + sal_Bool mbPreviewUsesCheckeredBackground; }; #define DEFAULT_WORKSPACE_GRADIENT_START_COLOR Color( 0xa3, 0xae, 0xb8 ) @@ -972,8 +972,8 @@ public: // defines if previews which containn potentially transparent objects (e.g. the dash/line/LineStartEnd previews and others) // use the default transparent visualization background (checkered background) as it has got standard in graphic programs nowadays - void SetUIPreviewUsesCheckeredBackground(bool bNew) { CopyData(); mpData->mbUIPreviewUsesCheckeredBackground = bNew; } - bool GetUIPreviewUsesCheckeredBackground() const { return mpData->mbUIPreviewUsesCheckeredBackground; } + void SetPreviewUsesCheckeredBackground(bool bNew) { CopyData(); mpData->mbPreviewUsesCheckeredBackground = bNew; } + bool GetPreviewUsesCheckeredBackground() const { return mpData->mbPreviewUsesCheckeredBackground; } void SetStandardStyles(); |