summaryrefslogtreecommitdiff
path: root/oox
diff options
context:
space:
mode:
authorAndras Timar <atimar@suse.com>2012-10-13 16:50:57 +0200
committerAndras Timar <atimar@suse.com>2012-10-13 16:50:57 +0200
commit755ceb2f5ba5f605ae2a0c7c84dadfb41c34e264 (patch)
tree15d3eba45893049a3e8e70770d16533c8b9e0cdf /oox
parent644f7894153a9a9631de307b0ffeadf4bfa283e4 (diff)
it seems we still need the ::rtl:: prefix for OUString at some places
Change-Id: I0c043e2c33ee51d73cf8e00a1032e5953e8c1639
Diffstat (limited to 'oox')
-rw-r--r--oox/source/drawingml/transform2dcontext.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/oox/source/drawingml/transform2dcontext.cxx b/oox/source/drawingml/transform2dcontext.cxx
index 53d27eb43ae9..d5ce98465de8 100644
--- a/oox/source/drawingml/transform2dcontext.cxx
+++ b/oox/source/drawingml/transform2dcontext.cxx
@@ -71,8 +71,8 @@ Reference< XFastContextHandler > Transform2DContext::createFastChildContext( sal
{
case A_TOKEN( off ):
{
- OUString sXValue = xAttribs->getOptionalValue( XML_x );
- OUString sYValue = xAttribs->getOptionalValue( XML_y );
+ ::rtl::OUString sXValue = xAttribs->getOptionalValue( XML_x );
+ ::rtl::OUString sYValue = xAttribs->getOptionalValue( XML_y );
if( !sXValue.isEmpty() )
mrShape.getTextBody()->getTextProperties().moTextOffX = GetCoordinate( sXValue.toInt32() - mrShape.getPosition().X );
if( !sYValue.isEmpty() )