summaryrefslogtreecommitdiff
path: root/sw/inc/breakit.hxx
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2007-09-27 06:56:19 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2007-09-27 06:56:19 +0000
commitf3f1c8bc974fd90ae37028f52dc46d43a367e630 (patch)
tree1a5baf2c8509df4f8c3abd5d8b9c919b6bca7565 /sw/inc/breakit.hxx
parent7253028e79622e8f5fa1368705d8ea66fd400837 (diff)
INTEGRATION: CWS swwarnings (1.10.442); FILE MERGED
2007/04/04 08:01:57 tl 1.10.442.1: #i69287# warning-free code
Diffstat (limited to 'sw/inc/breakit.hxx')
-rw-r--r--sw/inc/breakit.hxx23
1 files changed, 11 insertions, 12 deletions
diff --git a/sw/inc/breakit.hxx b/sw/inc/breakit.hxx
index 224f3b0e1578..2703345c4ddf 100644
--- a/sw/inc/breakit.hxx
+++ b/sw/inc/breakit.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: breakit.hxx,v $
*
- * $Revision: 1.10 $
+ * $Revision: 1.11 $
*
- * last change: $Author: vg $ $Date: 2006-04-07 15:06:12 $
+ * last change: $Author: hr $ $Date: 2007-09-27 07:56:19 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -65,14 +65,13 @@ class String;
* class SwBreakIt
*************************************************************************/
-namespace css = com::sun::star;
class SwBreakIt
{
- css::uno::Reference< css::lang::XMultiServiceFactory > m_xMSF;
+ com::sun::star::uno::Reference< com::sun::star::lang::XMultiServiceFactory > m_xMSF;
- css::lang::Locale * m_pLocale;
- css::i18n::ForbiddenCharacters * m_pForbidden;
+ com::sun::star::lang::Locale * m_pLocale;
+ com::sun::star::i18n::ForbiddenCharacters * m_pForbidden;
LanguageType aLast; // language of the current locale
LanguageType aForbiddenLang; // language of the current forbiddenChar struct
@@ -87,34 +86,34 @@ class SwBreakIt
// private (see @ _Create, _Delete).
explicit SwBreakIt(
- const css::uno::Reference< css::lang::XMultiServiceFactory > & rxMSF);
+ const com::sun::star::uno::Reference< com::sun::star::lang::XMultiServiceFactory > & rxMSF);
~SwBreakIt();
public:
// private (see @ source/core/bastyp/init.cxx).
static void _Create(
- const css::uno::Reference< css::lang::XMultiServiceFactory > & rxMSF);
+ const com::sun::star::uno::Reference< com::sun::star::lang::XMultiServiceFactory > & rxMSF);
static void _Delete();
public:
static SwBreakIt * Get();
// @@@ backward compatibility @@@
- css::uno::Reference< css::i18n::XBreakIterator > xBreak;
+ com::sun::star::uno::Reference< com::sun::star::i18n::XBreakIterator > xBreak;
- const css::uno::Reference< css::i18n::XBreakIterator > & GetBreakIter()
+ const com::sun::star::uno::Reference< com::sun::star::i18n::XBreakIterator > & GetBreakIter()
{
return xBreak;
}
- const css::lang::Locale& GetLocale( const LanguageType aLang )
+ const com::sun::star::lang::Locale& GetLocale( const LanguageType aLang )
{
if( !m_pLocale || aLast != aLang )
_GetLocale( aLang );
return *m_pLocale;
}
- const css::i18n::ForbiddenCharacters& GetForbidden( const LanguageType aLang )
+ const com::sun::star::i18n::ForbiddenCharacters& GetForbidden( const LanguageType aLang )
{
if( !m_pForbidden || aForbiddenLang != aLang )
_GetForbidden( aLang );