From f0a5e3934ee2261284932c2e8dc48b8ce6605686 Mon Sep 17 00:00:00 2001 From: José Guilherme Vanz Date: Thu, 6 Dec 2012 23:46:58 -0200 Subject: ::rtl:: prefixes removal in oox MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit removes some ::rtl:: prefixes and some macros in OOX Change-Id: I0c5ad9805ec2e8ed1092c56fe32e6901fdbd2b67 Signed-off-by: José Guilherme Vanz Reviewed-on: https://gerrit.libreoffice.org/1261 Reviewed-by: Caolán McNamara Tested-by: Caolán McNamara --- oox/source/drawingml/fillpropertiesgroupcontext.cxx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'oox/source/drawingml/fillpropertiesgroupcontext.cxx') diff --git a/oox/source/drawingml/fillpropertiesgroupcontext.cxx b/oox/source/drawingml/fillpropertiesgroupcontext.cxx index ad928cd5980f..beca78f30658 100644 --- a/oox/source/drawingml/fillpropertiesgroupcontext.cxx +++ b/oox/source/drawingml/fillpropertiesgroupcontext.cxx @@ -24,7 +24,6 @@ #include "oox/drawingml/drawingmltypes.hxx" #include "oox/drawingml/fillproperties.hxx" -using ::rtl::OUString; using namespace ::com::sun::star; using namespace ::com::sun::star::uno; using namespace ::com::sun::star::xml::sax; @@ -217,7 +216,7 @@ Reference< XFastContextHandler > BlipFillContext::createFastChildContext( case A_TOKEN( srcRect ): { - rtl::OUString aDefault( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "0" ) ) ); + OUString aDefault( "0" ); ::com::sun::star::geometry::IntegerRectangle2D aClipRect; aClipRect.X1 = GetPercent( aAttribs.getString( XML_l, aDefault ) ); aClipRect.Y1 = GetPercent( aAttribs.getString( XML_t, aDefault ) ); -- cgit