summaryrefslogtreecommitdiff
path: root/l10ntools/inc/helpmerge.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 /l10ntools/inc/helpmerge.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 'l10ntools/inc/helpmerge.hxx')
-rw-r--r--l10ntools/inc/helpmerge.hxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/l10ntools/inc/helpmerge.hxx b/l10ntools/inc/helpmerge.hxx
index 1f11726182f6..95aad6d15ab3 100644
--- a/l10ntools/inc/helpmerge.hxx
+++ b/l10ntools/inc/helpmerge.hxx
@@ -27,18 +27,18 @@
class HelpParser
{
private:
- rtl::OString sHelpFile;
+ OString sHelpFile;
#if OSL_DEBUG_LEVEL > 2
/// Debugmethod, prints the content of the map to stdout
- static void Dump(LangHashMap* rElem_in , const rtl::OString & sKey_in);
+ static void Dump(LangHashMap* rElem_in , const OString & sKey_in);
/// Debugmethod, prints the content of the map to stdout
static void Dump(XMLHashMap* rElem_in);
#endif
public:
- HelpParser( const rtl::OString &rHelpFile );
+ HelpParser( const OString &rHelpFile );
~HelpParser(){};
/// Method append a PO file with the content of a parsed XML file
@@ -48,13 +48,13 @@ public:
/// Method merges the String from the POfile into XMLfile. Both Strings must
/// point to existing files.
- bool Merge( const rtl::OString &rPOFile_in, const rtl::OString &rDestinationFile_in ,
- const rtl::OString& sLanguage , MergeDataFile& aMergeDataFile );
+ bool Merge( const OString &rPOFile_in, const OString &rDestinationFile_in ,
+ const OString& sLanguage , MergeDataFile& aMergeDataFile );
private:
- bool MergeSingleFile( XMLFile* file , MergeDataFile& aMergeDataFile , const rtl::OString& sLanguage , rtl::OString const & sPath );
+ bool MergeSingleFile( XMLFile* file , MergeDataFile& aMergeDataFile , const OString& sLanguage , OString const & sPath );
- void ProcessHelp( LangHashMap* aLangHM , const rtl::OString& sCur , ResData *pResData , MergeDataFile& aMergeDataFile );
+ void ProcessHelp( LangHashMap* aLangHM , const OString& sCur , ResData *pResData , MergeDataFile& aMergeDataFile );
};
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */