summaryrefslogtreecommitdiff
path: root/lotuswordpro/source/filter/xfilter/xfofficemeta.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 /lotuswordpro/source/filter/xfilter/xfofficemeta.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 'lotuswordpro/source/filter/xfilter/xfofficemeta.hxx')
-rw-r--r--lotuswordpro/source/filter/xfilter/xfofficemeta.hxx28
1 files changed, 14 insertions, 14 deletions
diff --git a/lotuswordpro/source/filter/xfilter/xfofficemeta.hxx b/lotuswordpro/source/filter/xfilter/xfofficemeta.hxx
index 74a82f56fa31..118fea5642eb 100644
--- a/lotuswordpro/source/filter/xfilter/xfofficemeta.hxx
+++ b/lotuswordpro/source/filter/xfilter/xfofficemeta.hxx
@@ -69,23 +69,23 @@ public:
XFOfficeMeta(){}
virtual ~XFOfficeMeta(){}
- void SetCreator(rtl::OUString creator);
- void SetDescription(rtl::OUString dsr);
- void SetKeywords(rtl::OUString keywords);
- void SetCreationTime(rtl::OUString crtime);
- void SetLastTime(rtl::OUString lstime);
- void SetEditTime(rtl::OUString edtime);
+ void SetCreator(OUString creator);
+ void SetDescription(OUString dsr);
+ void SetKeywords(OUString keywords);
+ void SetCreationTime(OUString crtime);
+ void SetLastTime(OUString lstime);
+ void SetEditTime(OUString edtime);
virtual void ToXml(IXFStream *pStream);
private:
- rtl::OUString m_strGenerator;
- rtl::OUString m_strTitle;
- rtl::OUString m_strCreator;
- rtl::OUString m_strDsr;
- rtl::OUString m_strKeywords;
- rtl::OUString m_strCrtime;
- rtl::OUString m_strLstime;
- rtl::OUString m_strEdtime;
+ OUString m_strGenerator;
+ OUString m_strTitle;
+ OUString m_strCreator;
+ OUString m_strDsr;
+ OUString m_strKeywords;
+ OUString m_strCrtime;
+ OUString m_strLstime;
+ OUString m_strEdtime;
};