summaryrefslogtreecommitdiff
path: root/svtools/source/graphic/grfcache.cxx
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 /svtools/source/graphic/grfcache.cxx
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 'svtools/source/graphic/grfcache.cxx')
-rw-r--r--svtools/source/graphic/grfcache.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/svtools/source/graphic/grfcache.cxx b/svtools/source/graphic/grfcache.cxx
index 0e5a763e9a32..372ecf96f1e0 100644
--- a/svtools/source/graphic/grfcache.cxx
+++ b/svtools/source/graphic/grfcache.cxx
@@ -56,7 +56,7 @@ public:
rID.mnID3 == mnID3 && rID.mnID4 == mnID4 );
}
- rtl::OString GetIDString() const;
+ OString GetIDString() const;
sal_Bool IsEmpty() const { return( 0 == mnID4 ); }
};
@@ -118,9 +118,9 @@ GraphicID::GraphicID( const GraphicObject& rObj )
}
}
-rtl::OString GraphicID::GetIDString() const
+OString GraphicID::GetIDString() const
{
- rtl::OStringBuffer aHexStr;
+ OStringBuffer aHexStr;
sal_Int32 nShift, nIndex = 0;
aHexStr.setLength(32);
@@ -845,7 +845,7 @@ GraphicCache::~GraphicCache()
void GraphicCache::AddGraphicObject(
const GraphicObject& rObj,
Graphic& rSubstitute,
- const rtl::OString* pID,
+ const OString* pID,
const GraphicObject* pCopyObj
)
{
@@ -1103,9 +1103,9 @@ sal_Bool GraphicCache::IsInDisplayCache( OutputDevice* pOut, const Point& rPt, c
return bFound;
}
-rtl::OString GraphicCache::GetUniqueID( const GraphicObject& rObj ) const
+OString GraphicCache::GetUniqueID( const GraphicObject& rObj ) const
{
- rtl::OString aRet;
+ OString aRet;
GraphicCacheEntry* pEntry = ( (GraphicCache*) this )->ImplGetCacheEntry( rObj );
// ensure that the entry is correctly initialized (it has to be read at least once)