summaryrefslogtreecommitdiff
path: root/oox/inc/oox/drawingml/theme.hxx
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@suse.cz>2013-04-07 12:06:47 +0200
committerLuboš Luňák <l.lunak@suse.cz>2013-04-07 14:23:11 +0200
commit1946794ae09ba732022fe6a74ea45e304ab70b84 (patch)
treee32bd7ba61fa021ecc7f8c85959df8ca837d6e81 /oox/inc/oox/drawingml/theme.hxx
parent5b08c6e7a21dda94d5b755eea0b1ed1e9c199bec (diff)
mass removal of rtl:: prefixes for O(U)String*
Modules sal, salhelper, cppu, cppuhelper, codemaker (selectively) and odk have kept them, in order not to break external API (the automatic using declaration is LO-internal). Change-Id: I588fc9e0c45b914f824f91c0376980621d730f09
Diffstat (limited to 'oox/inc/oox/drawingml/theme.hxx')
-rw-r--r--oox/inc/oox/drawingml/theme.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/oox/inc/oox/drawingml/theme.hxx b/oox/inc/oox/drawingml/theme.hxx
index 12bb62be476c..f167c43a4fd4 100644
--- a/oox/inc/oox/drawingml/theme.hxx
+++ b/oox/inc/oox/drawingml/theme.hxx
@@ -48,8 +48,8 @@ public:
explicit Theme();
~Theme();
- inline void setStyleName( const ::rtl::OUString& rStyleName ) { maStyleName = rStyleName; }
- inline const ::rtl::OUString& getStyleName() const { return maStyleName; }
+ inline void setStyleName( const OUString& rStyleName ) { maStyleName = rStyleName; }
+ inline const OUString& getStyleName() const { return maStyleName; }
inline ClrScheme& getClrScheme() { return maClrScheme; }
inline const ClrScheme& getClrScheme() const { return maClrScheme; }
@@ -75,7 +75,7 @@ public:
/** Returns theme font properties by scheme type (major/minor). */
const TextCharacterProperties* getFontStyle( sal_Int32 nSchemeType ) const;
/** Returns theme font by placeholder name, e.g. the major latin theme font for the font name '+mj-lt'. */
- const TextFont* resolveFont( const ::rtl::OUString& rName ) const;
+ const TextFont* resolveFont( const OUString& rName ) const;
inline Shape& getSpDef() { return maSpDef; }
inline const Shape& getSpDef() const { return maSpDef; }
@@ -92,7 +92,7 @@ public:
::com::sun::star::xml::dom::XDocument>& getFragment() const { return mxFragment; }
private:
- ::rtl::OUString maStyleName;
+ OUString maStyleName;
ClrScheme maClrScheme;
FillStyleList maFillStyleList;
FillStyleList maBgFillStyleList;