summaryrefslogtreecommitdiff
path: root/i18npool/source/characterclassification/characterclassificationImpl.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'i18npool/source/characterclassification/characterclassificationImpl.cxx')
-rw-r--r--i18npool/source/characterclassification/characterclassificationImpl.cxx9
1 files changed, 5 insertions, 4 deletions
diff --git a/i18npool/source/characterclassification/characterclassificationImpl.cxx b/i18npool/source/characterclassification/characterclassificationImpl.cxx
index 03566456cd0c..849251e65213 100644
--- a/i18npool/source/characterclassification/characterclassificationImpl.cxx
+++ b/i18npool/source/characterclassification/characterclassificationImpl.cxx
@@ -23,12 +23,13 @@
#include <rtl/ustrbuf.hxx>
using namespace com::sun::star::uno;
+using namespace ::com::sun::star::i18n;
using namespace com::sun::star::lang;
-namespace com { namespace sun { namespace star { namespace i18n {
+namespace i18npool {
CharacterClassificationImpl::CharacterClassificationImpl(
- const Reference < uno::XComponentContext >& rxContext ) : m_xContext( rxContext )
+ const Reference < XComponentContext >& rxContext ) : m_xContext( rxContext )
{
if (createLocaleSpecificCharacterClassification("Unicode", Locale()))
xUCI = cachedItem->xCI;
@@ -205,14 +206,14 @@ CharacterClassificationImpl::getSupportedServiceNames()
return aRet;
}
-} } } }
+}
extern "C" SAL_DLLPUBLIC_EXPORT css::uno::XInterface * SAL_CALL
com_sun_star_i18n_CharacterClassification_get_implementation(
css::uno::XComponentContext *context,
css::uno::Sequence<css::uno::Any> const &)
{
- return cppu::acquire(new css::i18n::CharacterClassificationImpl(context));
+ return cppu::acquire(new i18npool::CharacterClassificationImpl(context));
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */