summaryrefslogtreecommitdiff
path: root/cui/source/dialogs/showcols.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-02-22 18:24:10 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-02-24 08:08:00 +0100
commitb7259532d83ea1263f6944974d71162c47203939 (patch)
tree19d6a840d86070831573a583dd45a2b828218323 /cui/source/dialogs/showcols.cxx
parentad73967e99235a2ba9b5a2106c5d6d0f8efaa1ca (diff)
Remove unnecessary bool2any
Change-Id: Ie2caee1d5a7912011d76172539c2f8f37eaee5cf
Diffstat (limited to 'cui/source/dialogs/showcols.cxx')
-rw-r--r--cui/source/dialogs/showcols.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/cui/source/dialogs/showcols.cxx b/cui/source/dialogs/showcols.cxx
index 8c9ac35ce3b4..b0339cb4a7b9 100644
--- a/cui/source/dialogs/showcols.cxx
+++ b/cui/source/dialogs/showcols.cxx
@@ -24,7 +24,6 @@
#include <dialmgr.hxx>
#include <vcl/msgbox.hxx>
#include <com/sun/star/beans/XPropertySet.hpp>
-#include <comphelper/extract.hxx>
#include <comphelper/types.hxx>
#define CUIFM_PROP_HIDDEN "Hidden"
@@ -60,7 +59,7 @@ IMPL_LINK_NOARG(FmShowColsDialog, OnClickedOk)
{
try
{
- xCol->setPropertyValue(CUIFM_PROP_HIDDEN, ::cppu::bool2any(false));
+ xCol->setPropertyValue(CUIFM_PROP_HIDDEN, css::uno::Any(false));
}
catch(...)
{