summaryrefslogtreecommitdiff
path: root/svx/source/items/svxfont.cxx
diff options
context:
space:
mode:
authorEike Rathke <er@openoffice.org>2000-10-29 16:21:28 +0000
committerEike Rathke <er@openoffice.org>2000-10-29 16:21:28 +0000
commitad2925bafc53d0ff42a72fc0629811e4d8fdacc7 (patch)
tree7fa4a278bbd8e513106345eada0b4034b67fa527 /svx/source/items/svxfont.cxx
parent2b851bf7d06bfbfcb5ed6ecc9cbe24ff523daf0a (diff)
i18n API moved from com.sun.star.lang to com.sun.star.i18n
Diffstat (limited to 'svx/source/items/svxfont.cxx')
-rw-r--r--svx/source/items/svxfont.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/svx/source/items/svxfont.cxx b/svx/source/items/svxfont.cxx
index 255957f93996..6d2ac0251f4c 100644
--- a/svx/source/items/svxfont.cxx
+++ b/svx/source/items/svxfont.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: svxfont.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: sj $ $Date: 2000-10-20 17:43:18 $
+ * last change: $Author: er $ $Date: 2000-10-29 17:11:30 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -76,8 +76,8 @@
#ifndef _UNO_LINGU_HXX
#include <unolingu.hxx>
#endif
-#ifndef _COM_SUN_STAR_LANG_KCHARACTERTYPE_HPP_
-#include <com/sun/star/lang/KCharacterType.hpp>
+#ifndef _COM_SUN_STAR_I18N_KCHARACTERTYPE_HPP_
+#include <com/sun/star/i18n/KCharacterType.hpp>
#endif
#pragma hdrstop
@@ -317,9 +317,9 @@ void SvxFont::DoOnCapitals(SvxDoCapitals &rDo, const xub_StrLen nPartLen) const
while( nPos < nTxtLen )
{
sal_Int32 nCharacterType = aCharClass.getCharacterType( aCharString, 0 );
- if ( nCharacterType & ::com::sun::star::lang::KCharacterType::LOWER )
+ if ( nCharacterType & ::com::sun::star::i18n::KCharacterType::LOWER )
break;
- if ( ! ( nCharacterType & ::com::sun::star::lang::KCharacterType::UPPER ) )
+ if ( ! ( nCharacterType & ::com::sun::star::i18n::KCharacterType::UPPER ) )
break;
aCharString = rTxt.GetChar( ++nPos + nIdx );
}
@@ -332,7 +332,7 @@ void SvxFont::DoOnCapitals(SvxDoCapitals &rDo, const xub_StrLen nPartLen) const
while( nPos < nTxtLen )
{
sal_uInt32 nCharacterType = aCharClass.getCharacterType( aCharString, 0 );
- if ( ! ( nCharacterType & ::com::sun::star::lang::KCharacterType::LOWER ) )
+ if ( ! ( nCharacterType & ::com::sun::star::i18n::KCharacterType::LOWER ) )
break;
if ( CH_BLANK == aCharString )
break;