summaryrefslogtreecommitdiff
path: root/i18npool/source
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-09-11 12:34:19 +0200
committerStephan Bergmann <sbergman@redhat.com>2014-09-11 12:34:19 +0200
commita6104092925a6fe9f96ca239c0292bd1539d5746 (patch)
tree4a55d71e160d208ad6d7f55e5ff28ed57e31b113 /i18npool/source
parent91ba527a63f77658ee147515f1699792059aa2e5 (diff)
Avoid name clash with generated C++ class corresponding to UNOIDL service
Change-Id: Ie76cab45f5fd609457b11cb3b9732cba2da3b023
Diffstat (limited to 'i18npool/source')
-rw-r--r--i18npool/source/ordinalsuffix/ordinalsuffix.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/i18npool/source/ordinalsuffix/ordinalsuffix.cxx b/i18npool/source/ordinalsuffix/ordinalsuffix.cxx
index dafc783ab2b9..53cea5fd0a03 100644
--- a/i18npool/source/ordinalsuffix/ordinalsuffix.cxx
+++ b/i18npool/source/ordinalsuffix/ordinalsuffix.cxx
@@ -35,11 +35,11 @@ using namespace ::com::sun::star;
namespace com { namespace sun { namespace star { namespace i18n {
-OrdinalSuffix::OrdinalSuffix()
+OrdinalSuffixService::OrdinalSuffixService()
{
}
-OrdinalSuffix::~OrdinalSuffix()
+OrdinalSuffixService::~OrdinalSuffixService()
{
}
@@ -65,7 +65,7 @@ namespace
* For this method to properly return the ordinal suffix for other locales
* than english ones, ICU 4.2+ has to be used.
*/
-uno::Sequence< OUString > SAL_CALL OrdinalSuffix::getOrdinalSuffix( sal_Int32 nNumber,
+uno::Sequence< OUString > SAL_CALL OrdinalSuffixService::getOrdinalSuffix( sal_Int32 nNumber,
const lang::Locale &rLocale ) throw( RuntimeException, std::exception )
{
uno::Sequence< OUString > retValue;
@@ -135,17 +135,17 @@ uno::Sequence< OUString > SAL_CALL OrdinalSuffix::getOrdinalSuffix( sal_Int32 nN
const sal_Char cOrdinalSuffix[] = "com.sun.star.i18n.OrdinalSuffix";
-OUString SAL_CALL OrdinalSuffix::getImplementationName(void) throw( RuntimeException, std::exception )
+OUString SAL_CALL OrdinalSuffixService::getImplementationName(void) throw( RuntimeException, std::exception )
{
return OUString::createFromAscii(cOrdinalSuffix);
}
-sal_Bool SAL_CALL OrdinalSuffix::supportsService( const OUString& rServiceName) throw( RuntimeException, std::exception )
+sal_Bool SAL_CALL OrdinalSuffixService::supportsService( const OUString& rServiceName) throw( RuntimeException, std::exception )
{
return cppu::supportsService(this, rServiceName);
}
-Sequence< OUString > SAL_CALL OrdinalSuffix::getSupportedServiceNames(void) throw( RuntimeException, std::exception )
+Sequence< OUString > SAL_CALL OrdinalSuffixService::getSupportedServiceNames(void) throw( RuntimeException, std::exception )
{
Sequence< OUString > aRet(1);
aRet[0] = OUString::createFromAscii(cOrdinalSuffix);
@@ -159,7 +159,7 @@ com_sun_star_i18n_OrdinalSuffix_get_implementation(
css::uno::XComponentContext *,
css::uno::Sequence<css::uno::Any> const &)
{
- return cppu::acquire(new css::i18n::OrdinalSuffix());
+ return cppu::acquire(new css::i18n::OrdinalSuffixService());
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */