summaryrefslogtreecommitdiff
path: root/svtools/source/filter/exportdialog.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svtools/source/filter/exportdialog.cxx')
-rw-r--r--svtools/source/filter/exportdialog.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svtools/source/filter/exportdialog.cxx b/svtools/source/filter/exportdialog.cxx
index b7c30adcc100..c9e648b75940 100644
--- a/svtools/source/filter/exportdialog.cxx
+++ b/svtools/source/filter/exportdialog.cxx
@@ -347,9 +347,9 @@ awt::Size ExportDialog::GetOriginalSize()
sal_Int32 nWidth = 0;
sal_Int32 nHeight= 0;
com::sun::star::uno::Any aAny;
- aAny = xPagePropSet->getPropertyValue(OUString("Width"));
+ aAny = xPagePropSet->getPropertyValue("Width");
aAny >>= nWidth;
- aAny = xPagePropSet->getPropertyValue(OUString("Height"));
+ aAny = xPagePropSet->getPropertyValue("Height");
aAny >>= nHeight;
aShapesRange = basegfx::B2DRange( 0, 0, nWidth, nHeight );
}