summaryrefslogtreecommitdiff
path: root/xmloff/source/draw/sdxmlexp.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-11-04 14:00:40 +0200
committerNoel Grandin <noel@peralex.com>2013-11-11 11:21:26 +0200
commite52779d2f8722c713f72aedbf475267440d729f0 (patch)
tree0f2f15b2a7645e0b75f8057c96c90e05e1a6e7df /xmloff/source/draw/sdxmlexp.cxx
parente9c4ee996d5a6bf895072613ac4e488346ee5b05 (diff)
remove unnecessary use of OUString constructor
Change-Id: Ifb220af71857ddacd64e8204fb6d3e4aad8eef71
Diffstat (limited to 'xmloff/source/draw/sdxmlexp.cxx')
-rw-r--r--xmloff/source/draw/sdxmlexp.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/xmloff/source/draw/sdxmlexp.cxx b/xmloff/source/draw/sdxmlexp.cxx
index 58cd9384850b..03b6d7f367bc 100644
--- a/xmloff/source/draw/sdxmlexp.cxx
+++ b/xmloff/source/draw/sdxmlexp.cxx
@@ -2525,13 +2525,13 @@ void SdXMLExport::GetViewSettings(uno::Sequence<beans::PropertyValue>& rProps)
xPropSet->getPropertyValue("VisibleArea") >>= aVisArea;
sal_uInt16 i = 0;
- pProps[i].Name = OUString("VisibleAreaTop");
+ pProps[i].Name = "VisibleAreaTop";
pProps[i++].Value <<= aVisArea.Y;
- pProps[i].Name = OUString("VisibleAreaLeft");
+ pProps[i].Name = "VisibleAreaLeft";
pProps[i++].Value <<= aVisArea.X;
- pProps[i].Name = OUString("VisibleAreaWidth");
+ pProps[i].Name = "VisibleAreaWidth";
pProps[i++].Value <<= aVisArea.Width;
- pProps[i].Name = OUString("VisibleAreaHeight");
+ pProps[i].Name = "VisibleAreaHeight";
pProps[i++].Value <<= aVisArea.Height;
}
}