diff options
author | os <os@openoffice.org> | 2009-11-06 14:01:08 +0100 |
---|---|---|
committer | os <os@openoffice.org> | 2009-11-06 14:01:08 +0100 |
commit | 646c27f23622ee5cf96cc58188fdccb3075d19ac (patch) | |
tree | 0f46affe910b9f73d03505ad045b6573216ac268 | |
parent | f25bcb748c01960c0533a4df0f4705d573a2d317 (diff) |
#i106342# printoptions ProspectRTL, Placeholder and HiddenText fixed
-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 bfdb2b1d2460..ed6d61898804 100644 --- a/sw/source/ui/uno/unomod.cxx +++ b/sw/source/ui/uno/unomod.cxx @@ -576,17 +576,17 @@ void SwXPrintSettings::_getSingleValue( const comphelper::PropertyInfo & rInfo, break; case HANDLE_PRINTSET_PROSPECT_RTL: { - rValue <<= mpPrtOpt->IsPrintProspect_RTL(); + bBoolVal = mpPrtOpt->IsPrintProspect_RTL(); } break; case HANDLE_PRINTSET_PLACEHOLDER: { - rValue <<= mpPrtOpt->IsPrintTextPlaceholder(); + bBoolVal = mpPrtOpt->IsPrintTextPlaceholder(); } break; case HANDLE_PRINTSET_HIDDEN_TEXT: { - rValue <<= mpPrtOpt->IsPrintHiddenText(); + bBoolVal = mpPrtOpt->IsPrintHiddenText(); } break; default: |