diff options
author | José Guilherme Vanz <guilherme.sft@gmail.com> | 2012-12-06 23:46:58 -0200 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-12-07 13:05:33 +0000 |
commit | f0a5e3934ee2261284932c2e8dc48b8ce6605686 (patch) | |
tree | 8c958c08257e41c70919c1e2f5e4788b1a4fab2e /oox/source/drawingml/textrun.cxx | |
parent | 74e858693e4c8e5b87730033706656a220f71cfc (diff) |
::rtl:: prefixes removal in oox
This commit removes some ::rtl:: prefixes and some macros in OOX
Change-Id: I0c5ad9805ec2e8ed1092c56fe32e6901fdbd2b67
Signed-off-by: José Guilherme Vanz <guilherme.sft@gmail.com>
Reviewed-on: https://gerrit.libreoffice.org/1261
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'oox/source/drawingml/textrun.cxx')
-rw-r--r-- | oox/source/drawingml/textrun.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/oox/source/drawingml/textrun.cxx b/oox/source/drawingml/textrun.cxx index 323a28df96d9..00eae0755c33 100644 --- a/oox/source/drawingml/textrun.cxx +++ b/oox/source/drawingml/textrun.cxx @@ -29,7 +29,6 @@ #include "oox/core/xmlfilterbase.hxx" #include "oox/token/tokens.hxx" -using ::rtl::OUString; using namespace ::com::sun::star::uno; using namespace ::com::sun::star::text; using namespace ::com::sun::star::beans; @@ -110,7 +109,7 @@ sal_Int32 TextRun::insertAt( aPropSet.setAnyProperty( PROP_CharFontPitch, Any( nLatinFontPitch ) ); aPropSet.setAnyProperty( PROP_CharFontFamily, Any( nLatinFontFamily ) ); } - rtl::OUString aSubString( getText().copy( nIndex, nCount ) ); + OUString aSubString( getText().copy( nIndex, nCount ) ); xText->insertString( xStart, aSubString, sal_False ); nIndex += nCount; |