summaryrefslogtreecommitdiff
path: root/sw/inc/breakit.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-11-05 15:55:58 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-11-06 05:44:52 +0000
commit7a401e5e83abb41b51fca92e3d92dfb2fff6d0e6 (patch)
tree09792748ab8f1e7f976d28c2163637f8268f6d36 /sw/inc/breakit.hxx
parentcb27eef229ce7f3d415184e74d1cb24ec2f8510c (diff)
com::sun::star->css in sw/inc
Change-Id: I6ffdb1deaa32156c65f997a1a1056928b7cd863d Reviewed-on: https://gerrit.libreoffice.org/19803 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'sw/inc/breakit.hxx')
-rw-r--r--sw/inc/breakit.hxx18
1 files changed, 9 insertions, 9 deletions
diff --git a/sw/inc/breakit.hxx b/sw/inc/breakit.hxx
index 4dcba72214bd..dd2ba2dafc8f 100644
--- a/sw/inc/breakit.hxx
+++ b/sw/inc/breakit.hxx
@@ -33,11 +33,11 @@ enum class SvtScriptType;
class SW_DLLPUBLIC SwBreakIt : private ::boost::noncopyable
{
- com::sun::star::uno::Reference< com::sun::star::uno::XComponentContext > m_xContext;
- mutable com::sun::star::uno::Reference< com::sun::star::i18n::XBreakIterator > xBreak;
+ css::uno::Reference< css::uno::XComponentContext > m_xContext;
+ mutable css::uno::Reference< css::i18n::XBreakIterator > xBreak;
LanguageTag * m_pLanguageTag; ///< language tag of the current locale
- com::sun::star::i18n::ForbiddenCharacters * m_pForbidden;
+ css::i18n::ForbiddenCharacters * m_pForbidden;
LanguageType aForbiddenLang; ///< language of the current forbiddenChar struct
@@ -49,32 +49,32 @@ class SW_DLLPUBLIC SwBreakIt : private ::boost::noncopyable
// private (see @ _Create, _Delete).
explicit SwBreakIt(
- const com::sun::star::uno::Reference< com::sun::star::uno::XComponentContext > & rxContext);
+ const css::uno::Reference< css::uno::XComponentContext > & rxContext);
~SwBreakIt();
public:
// private (see @ source/core/bastyp/init.cxx).
static void _Create(
- const com::sun::star::uno::Reference< com::sun::star::uno::XComponentContext > & rxContext);
+ const css::uno::Reference< css::uno::XComponentContext > & rxContext);
static void _Delete();
public:
static SwBreakIt * Get();
- com::sun::star::uno::Reference< com::sun::star::i18n::XBreakIterator > GetBreakIter()
+ css::uno::Reference< css::i18n::XBreakIterator > GetBreakIter()
{
createBreakIterator();
return xBreak;
}
- const com::sun::star::lang::Locale& GetLocale( const LanguageType aLang )
+ const css::lang::Locale& GetLocale( const LanguageType aLang )
{
if( !m_pLanguageTag || m_pLanguageTag->getLanguageType() != aLang )
_GetLocale( aLang );
return m_pLanguageTag->getLocale();
}
- const com::sun::star::lang::Locale& GetLocale( const LanguageTag& rLanguageTag )
+ const css::lang::Locale& GetLocale( const LanguageTag& rLanguageTag )
{
// Use LanguageType comparison instead of LanguageTag::operator!=()
// because here the LanguageTag is already a known LanguageType value
@@ -103,7 +103,7 @@ public:
return *m_pLanguageTag;
}
- const com::sun::star::i18n::ForbiddenCharacters& GetForbidden( const LanguageType aLang )
+ const css::i18n::ForbiddenCharacters& GetForbidden( const LanguageType aLang )
{
if( !m_pForbidden || aForbiddenLang != aLang )
_GetForbidden( aLang );