summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorsb <sb@openoffice.org>2010-12-14 13:25:17 +0100
committersb <sb@openoffice.org>2010-12-14 13:25:17 +0100
commit9f99bc563a5e9712a2601ba45d01e0762d269f94 (patch)
treee26b65d69a56d8fcd2cf3edd39ff71f80af1990a /sd
parentd09b044055e6407612838c228036ea5809fe28dd (diff)
sb135: #i116122# sd::slidesorter::view::Theme mbIsHighContrastMode uninitialized
Diffstat (limited to 'sd')
-rw-r--r--sd/source/ui/slidesorter/view/SlsTheme.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/sd/source/ui/slidesorter/view/SlsTheme.cxx b/sd/source/ui/slidesorter/view/SlsTheme.cxx
index 7357d7ea00b8..2aaa7f23af95 100644
--- a/sd/source/ui/slidesorter/view/SlsTheme.cxx
+++ b/sd/source/ui/slidesorter/view/SlsTheme.cxx
@@ -73,7 +73,8 @@ ColorData HGBAdapt (
Theme::Theme (const ::boost::shared_ptr<controller::Properties>& rpProperties)
- : maBackgroundColor(rpProperties->GetBackgroundColor().GetColor()),
+ : mbIsHighContrastMode(false),
+ maBackgroundColor(rpProperties->GetBackgroundColor().GetColor()),
maPageBackgroundColor(COL_WHITE),
maGradients(),
maIcons(),