diff options
author | Kurt Zenker <kz@openoffice.org> | 2010-01-18 18:37:54 +0100 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2010-01-18 18:37:54 +0100 |
commit | 92d105a5d128da30264e1fa06a612c67d1e152aa (patch) | |
tree | a0f83aaed492fd797798780a785183ec682369c0 /sw/source | |
parent | 5623bced093490e9d9452323dc96658246d55e24 (diff) |
masterfix: #i10000# bBoolVar does not exist, use rValue
Diffstat (limited to 'sw/source')
-rw-r--r-- | sw/source/ui/uno/unomod.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/ui/uno/unomod.cxx b/sw/source/ui/uno/unomod.cxx index acd16936ea..e06733b6cb 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: |