summaryrefslogtreecommitdiff
path: root/sw/source
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2010-01-18 18:37:54 +0100
committerKurt Zenker <kz@openoffice.org>2010-01-18 18:37:54 +0100
commitdf7c98db5ee7ed1e910d3e96461da37c005fa263 (patch)
treed18fa248d4b3c50318fc9498e0cb84eddf15ff80 /sw/source
parent4563270cfd37f1a08e0315a5624affa3a7680771 (diff)
masterfix: #i10000# bBoolVar does not exist, use rValue
Diffstat (limited to 'sw/source')
-rw-r--r--sw/source/ui/uno/unomod.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/ui/uno/unomod.cxx b/sw/source/ui/uno/unomod.cxx
index 6a072b44af31..906402b8e365 100644
--- a/sw/source/ui/uno/unomod.cxx
+++ b/sw/source/ui/uno/unomod.cxx
@@ -572,17 +572,17 @@ void SwXPrintSettings::_getSingleValue( const comphelper::PropertyInfo & rInfo,
break;
case HANDLE_PRINTSET_PROSPECT_RTL:
{
- bBoolVal = mpPrtOpt->IsPrintProspectRTL();
+ rValue <<= mpPrtOpt->IsPrintProspectRTL();
}
break;
case HANDLE_PRINTSET_PLACEHOLDER:
{
- bBoolVal = mpPrtOpt->IsPrintTextPlaceholder();
+ rValue <<= mpPrtOpt->IsPrintTextPlaceholder();
}
break;
case HANDLE_PRINTSET_HIDDEN_TEXT:
{
- bBoolVal = mpPrtOpt->IsPrintHiddenText();
+ rValue <<= mpPrtOpt->IsPrintHiddenText();
}
break;
default: