summaryrefslogtreecommitdiff
path: root/sw/source/uibase/uiview/view.cxx
diff options
context:
space:
mode:
authorMatteo Casalin <matteo.casalin@yahoo.com>2014-11-30 18:33:21 +0100
committerMichael Stahl <mstahl@redhat.com>2014-12-10 21:12:20 +0000
commit8aac6ecc58fa2c475f34817e607efb6a31317898 (patch)
treef54e8b33783d244518c073d0615f054b8e468774 /sw/source/uibase/uiview/view.cxx
parent5f77059ff156ecbd69967f278d3e8f814c15958e (diff)
Use Any specializations for bool, instead of SetValue
Change-Id: I7a5babe494bdb09a71164ea74d7be3f6bf985ff6 Reviewed-on: https://gerrit.libreoffice.org/13215 Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org> Reviewed-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'sw/source/uibase/uiview/view.cxx')
-rw-r--r--sw/source/uibase/uiview/view.cxx6
1 files changed, 2 insertions, 4 deletions
diff --git a/sw/source/uibase/uiview/view.cxx b/sw/source/uibase/uiview/view.cxx
index f0841cc194c0..5fd4deb71035 100644
--- a/sw/source/uibase/uiview/view.cxx
+++ b/sw/source/uibase/uiview/view.cxx
@@ -1508,8 +1508,7 @@ void SwView::WriteUserDataSequence ( uno::Sequence < beans::PropertyValue >& rSe
pValue++;nIndex++;
pValue->Name = "ViewLayoutBookMode";
- const sal_Bool bIsViewLayoutBookMode = m_pWrtShell->GetViewOptions()->IsViewLayoutBookMode();
- pValue->Value.setValue( &bIsViewLayoutBookMode, ::getBooleanCppuType() );
+ pValue->Value <<= m_pWrtShell->GetViewOptions()->IsViewLayoutBookMode();
pValue++;nIndex++;
pValue->Name = "ZoomFactor";
@@ -1517,8 +1516,7 @@ void SwView::WriteUserDataSequence ( uno::Sequence < beans::PropertyValue >& rSe
pValue++;nIndex++;
pValue->Name = "IsSelectedFrame";
- const bool bIsSelected = FRMTYPE_NONE != m_pWrtShell->GetSelFrmType();
- pValue->Value.setValue ( &bIsSelected, ::getBooleanCppuType() );
+ pValue->Value <<= FRMTYPE_NONE != m_pWrtShell->GetSelFrmType();
nIndex++;
assert(nIndex == NUM_VIEW_SETTINGS);