summaryrefslogtreecommitdiff
path: root/unotools/source/i18n/transliterationwrapper.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'unotools/source/i18n/transliterationwrapper.cxx')
-rw-r--r--unotools/source/i18n/transliterationwrapper.cxx11
1 files changed, 0 insertions, 11 deletions
diff --git a/unotools/source/i18n/transliterationwrapper.cxx b/unotools/source/i18n/transliterationwrapper.cxx
index 7a457e0ebf82..ecaaf0c8196b 100644
--- a/unotools/source/i18n/transliterationwrapper.cxx
+++ b/unotools/source/i18n/transliterationwrapper.cxx
@@ -17,7 +17,6 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-
#include <unotools/transliterationwrapper.hxx>
#include <tools/debug.hxx>
#include <i18nlangtag/languagetag.hxx>
@@ -38,12 +37,10 @@ TransliterationWrapper::TransliterationWrapper(
{
}
-
TransliterationWrapper::~TransliterationWrapper()
{
}
-
OUString TransliterationWrapper::transliterate(const OUString& rStr, sal_uInt16 nLang,
sal_Int32 nStart, sal_Int32 nLen,
Sequence <sal_Int32>* pOffset )
@@ -68,7 +65,6 @@ OUString TransliterationWrapper::transliterate(const OUString& rStr, sal_uInt16
return sRet;
}
-
OUString TransliterationWrapper::transliterate( const OUString& rStr,
sal_Int32 nStart, sal_Int32 nLen,
Sequence <sal_Int32>* pOffset ) const
@@ -101,7 +97,6 @@ bool TransliterationWrapper::needLanguageForTheMode() const
(sal_uInt32) TransliterationModulesExtra::TOGGLE_CASE == (sal_uInt32) nType;
}
-
void TransliterationWrapper::setLanguageLocaleImpl( sal_uInt16 nLang )
{
if( LANGUAGE_NONE == nLang )
@@ -109,7 +104,6 @@ void TransliterationWrapper::setLanguageLocaleImpl( sal_uInt16 nLang )
aLanguageTag.reset( nLang);
}
-
void TransliterationWrapper::loadModuleIfNeeded( sal_uInt16 nLang )
{
bool bLoad = bFirstCall;
@@ -143,7 +137,6 @@ void TransliterationWrapper::loadModuleIfNeeded( sal_uInt16 nLang )
}
}
-
void TransliterationWrapper::loadModuleImpl() const
{
if ( bFirstCall )
@@ -162,7 +155,6 @@ void TransliterationWrapper::loadModuleImpl() const
bFirstCall = false;
}
-
void TransliterationWrapper::loadModuleByImplName(const OUString& rModuleName,
sal_uInt16 nLang )
{
@@ -184,7 +176,6 @@ void TransliterationWrapper::loadModuleByImplName(const OUString& rModuleName,
bFirstCall = false;
}
-
bool TransliterationWrapper::equals(
const OUString& rStr1, sal_Int32 nPos1, sal_Int32 nCount1, sal_Int32& nMatch1,
const OUString& rStr2, sal_Int32 nPos2, sal_Int32 nCount2, sal_Int32& nMatch2 ) const
@@ -219,7 +210,6 @@ sal_Int32 TransliterationWrapper::compareString( const OUString& rStr1, const OU
return 0;
}
-
// --- helpers --------------------------------------------------------
bool TransliterationWrapper::isEqual( const OUString& rStr1, const OUString& rStr2 ) const
@@ -231,7 +221,6 @@ bool TransliterationWrapper::isEqual( const OUString& rStr1, const OUString& rSt
return bMatch;
}
-
bool TransliterationWrapper::isMatch( const OUString& rStr1, const OUString& rStr2 ) const
{
sal_Int32 nMatch1, nMatch2;