summaryrefslogtreecommitdiffstats
path: root/lotuswordpro/source/filter/lwpstory.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/lwpstory.hxx
parentTypo in comment in resmgr.hxx (diff)
downloadcore-1946794ae09ba732022fe6a74ea45e304ab70b84.tar.gz
core-1946794ae09ba732022fe6a74ea45e304ab70b84.zip
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/lwpstory.hxx')
-rw-r--r--lotuswordpro/source/filter/lwpstory.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/lotuswordpro/source/filter/lwpstory.hxx b/lotuswordpro/source/filter/lwpstory.hxx
index 7bbd2b5a2f99..8ef75e32604b 100644
--- a/lotuswordpro/source/filter/lwpstory.hxx
+++ b/lotuswordpro/source/filter/lwpstory.hxx
@@ -80,7 +80,7 @@ private:
LwpObjectID m_FirstParaStyle;
// for bullet , 05/23/2005
- typedef std::pair<rtl::OUString, sal_uInt8> NamePosPair;
+ typedef std::pair<OUString, sal_uInt8> NamePosPair;
std::vector <NamePosPair> m_vBulletStyleNameList;
// , 02/16/2005
@@ -133,8 +133,8 @@ public:
LwpPara* GetLastParaOfPreviousStory();
OUString GetContentText(sal_Bool bAllText = sal_False);//add by ,for CHB,05/5/25
- inline void AddBullStyleName2List(const rtl::OUString& rStyleName, const sal_uInt8& nPos);
- sal_Bool IsBullStyleUsedBefore(const rtl::OUString& rStyleName, const sal_uInt8& nPos);
+ inline void AddBullStyleName2List(const OUString& rStyleName, const sal_uInt8& nPos);
+ sal_Bool IsBullStyleUsedBefore(const OUString& rStyleName, const sal_uInt8& nPos);
OUString RegisterFirstFribStyle();
};
@@ -193,7 +193,7 @@ LwpHyperlinkMgr* LwpStory::GetHyperlinkMgr()
{
return m_pHyperlinkMgr;
}
-inline void LwpStory::AddBullStyleName2List(const rtl::OUString& rStyleName, const sal_uInt8& nPos)
+inline void LwpStory::AddBullStyleName2List(const OUString& rStyleName, const sal_uInt8& nPos)
{
m_vBulletStyleNameList.push_back(std::make_pair(rStyleName, nPos));
}