summaryrefslogtreecommitdiff
path: root/writerperfect
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-05-03 11:20:51 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-05-03 11:20:51 +0200
commita05ab9ef5e1804faed90f3df2f7fb8cb49065590 (patch)
treee6103fe46388857b91d51f63be313810ba0774b0 /writerperfect
parent4b3c211cfb4f64f0f31461aa2e623d64224c4423 (diff)
Remove unnecessary setBOOL, makeBoolAny
Change-Id: Id82c3f352fcc2d4dafad877517098cb6f5d046d4
Diffstat (limited to 'writerperfect')
-rw-r--r--writerperfect/source/impress/KeynoteImportFilter.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/writerperfect/source/impress/KeynoteImportFilter.cxx b/writerperfect/source/impress/KeynoteImportFilter.cxx
index 96fc8dae10e3..1547d1d27222 100644
--- a/writerperfect/source/impress/KeynoteImportFilter.cxx
+++ b/writerperfect/source/impress/KeynoteImportFilter.cxx
@@ -209,7 +209,7 @@ throw(css::uno::RuntimeException, std::exception)
lComponentDataNV.realloc(nCDSize + 1);
beans::NamedValue aValue;
aValue.Name = "IsPackage";
- aValue.Value = comphelper::makeBoolAny(true);
+ aValue.Value <<= true;
lComponentDataNV[nCDSize] = aValue;
Descriptor[nComponentDataLocation].Value <<= lComponentDataNV;
}
@@ -219,7 +219,7 @@ throw(css::uno::RuntimeException, std::exception)
lComponentDataPV.realloc(nCDSize + 1);
beans::PropertyValue aProp;
aProp.Name = "IsPackage";
- aProp.Value = comphelper::makeBoolAny(true);
+ aProp.Value <<= true;
aProp.Handle = -1;
aProp.State = beans::PropertyState_DIRECT_VALUE;
lComponentDataPV[nCDSize] = aProp;