summaryrefslogtreecommitdiff
path: root/sw/source/core/unocore/unoobj.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/core/unocore/unoobj.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/core/unocore/unoobj.cxx')
-rw-r--r--sw/source/core/unocore/unoobj.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/core/unocore/unoobj.cxx b/sw/source/core/unocore/unoobj.cxx
index ab964094342b..da3d5eadf10a 100644
--- a/sw/source/core/unocore/unoobj.cxx
+++ b/sw/source/core/unocore/unoobj.cxx
@@ -2618,7 +2618,7 @@ SwUnoCursorHelper::CreateSortDescriptor(const bool bFromTable)
beans::PropertyValue* pArray = aRet.getArray();
uno::Any aVal;
- aVal.setValue( &bFromTable, ::getCppuBooleanType());
+ aVal <<= bFromTable;
pArray[0] = beans::PropertyValue("IsSortInTable", -1, aVal,
beans::PropertyState_DIRECT_VALUE);