summaryrefslogtreecommitdiff
path: root/i18npool/inc/transliteration_Numeric.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 /i18npool/inc/transliteration_Numeric.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 'i18npool/inc/transliteration_Numeric.hxx')
-rw-r--r--i18npool/inc/transliteration_Numeric.hxx18
1 files changed, 9 insertions, 9 deletions
diff --git a/i18npool/inc/transliteration_Numeric.hxx b/i18npool/inc/transliteration_Numeric.hxx
index 2658d0a05dec..585e6014c4b7 100644
--- a/i18npool/inc/transliteration_Numeric.hxx
+++ b/i18npool/inc/transliteration_Numeric.hxx
@@ -25,8 +25,8 @@ namespace com { namespace sun { namespace star { namespace i18n {
class transliteration_Numeric : public transliteration_commonclass {
public:
- virtual ::rtl::OUString SAL_CALL
- transliterate( const ::rtl::OUString& inStr, sal_Int32 startPos, sal_Int32 nCount, ::com::sun::star::uno::Sequence< sal_Int32 >& offset )
+ virtual OUString SAL_CALL
+ transliterate( const OUString& inStr, sal_Int32 startPos, sal_Int32 nCount, ::com::sun::star::uno::Sequence< sal_Int32 >& offset )
throw(::com::sun::star::uno::RuntimeException);
virtual sal_Unicode SAL_CALL
@@ -37,16 +37,16 @@ public:
// Methods which are shared.
virtual sal_Int16 SAL_CALL getType( ) throw(::com::sun::star::uno::RuntimeException);
- virtual ::rtl::OUString SAL_CALL
- folding( const ::rtl::OUString& inStr, sal_Int32 startPos, sal_Int32 nCount, ::com::sun::star::uno::Sequence< sal_Int32 >& offset )
+ virtual OUString SAL_CALL
+ folding( const OUString& inStr, sal_Int32 startPos, sal_Int32 nCount, ::com::sun::star::uno::Sequence< sal_Int32 >& offset )
throw(::com::sun::star::uno::RuntimeException);
virtual sal_Bool SAL_CALL
- equals( const ::rtl::OUString& str1, sal_Int32 pos1, sal_Int32 nCount1, sal_Int32& nMatch1, const ::rtl::OUString& str2, sal_Int32 pos2, sal_Int32 nCount2, sal_Int32& nMatch2 )
+ equals( const OUString& str1, sal_Int32 pos1, sal_Int32 nCount1, sal_Int32& nMatch1, const OUString& str2, sal_Int32 pos2, sal_Int32 nCount2, sal_Int32& nMatch2 )
throw(::com::sun::star::uno::RuntimeException);
- virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL
- transliterateRange( const ::rtl::OUString& str1, const ::rtl::OUString& str2 )
+ virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL
+ transliterateRange( const OUString& str1, const OUString& str2 )
throw(::com::sun::star::uno::RuntimeException);
protected:
sal_Int16 nNativeNumberMode;
@@ -54,8 +54,8 @@ protected:
sal_Unicode* table;
sal_Bool recycleSymbol;
private:
- rtl::OUString SAL_CALL
- transliterateBullet( const rtl::OUString& inStr, sal_Int32 startPos, sal_Int32 nCount,
+ OUString SAL_CALL
+ transliterateBullet( const OUString& inStr, sal_Int32 startPos, sal_Int32 nCount,
com::sun::star::uno::Sequence< sal_Int32 >& offset )
throw(com::sun::star::uno::RuntimeException);
};