summaryrefslogtreecommitdiff
path: root/sfx2/source/sidebar/Theme.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sfx2/source/sidebar/Theme.cxx')
-rw-r--r--sfx2/source/sidebar/Theme.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sfx2/source/sidebar/Theme.cxx b/sfx2/source/sidebar/Theme.cxx
index 71d8bf28ad0c..b66c4bc709b0 100644
--- a/sfx2/source/sidebar/Theme.cxx
+++ b/sfx2/source/sidebar/Theme.cxx
@@ -995,10 +995,10 @@ void Theme::ProcessNewValue (
}
case PT_Boolean:
{
- bool nValue (false);
- if (rValue >>= nValue)
+ bool bValue (false);
+ if (rValue >>= bValue)
{
- maBooleans[nIndex] = nValue;
+ maBooleans[nIndex] = bValue;
if (eItem == Bool_IsHighContrastModeActive)
{
mbIsHighContrastModeSetManually = true;