summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Burow <pb@openoffice.org>2000-10-24 10:41:38 +0000
committerPeter Burow <pb@openoffice.org>2000-10-24 10:41:38 +0000
commit3e4786a1cc7c2a7d301894ac68557a572f42cba2 (patch)
tree2bcb6e77ec013c905d5970255dbf4468c8b7d789
parent0dbc3f2bdd6b102b7c3f2bbc7185c97d1567cdf6 (diff)
chg: don't use International::ToUpper() any longer
-rw-r--r--sfx2/source/bastyp/fltfnc.cxx12
1 files changed, 8 insertions, 4 deletions
diff --git a/sfx2/source/bastyp/fltfnc.cxx b/sfx2/source/bastyp/fltfnc.cxx
index 9bd46c349fe5..7c0a863804fa 100644
--- a/sfx2/source/bastyp/fltfnc.cxx
+++ b/sfx2/source/bastyp/fltfnc.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: fltfnc.cxx,v $
*
- * $Revision: 1.6 $
+ * $Revision: 1.7 $
*
- * last change: $Author: mba $ $Date: 2000-10-23 12:23:18 $
+ * last change: $Author: pb $ $Date: 2000-10-24 11:41:38 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -239,6 +239,9 @@ using namespace ::vos;
#ifndef _SFXECODE_HXX
#include <svtools/sfxecode.hxx>
#endif
+#ifndef _UNOTOOLS_CHARCLASS_HXX
+#include <unotools/charclass.hxx>
+#endif
#include "inimgr.hxx"
#include "app.hxx"
@@ -460,8 +463,9 @@ String FlagsToName_Impl( SfxFilterFlags nValue )
inline String ToUpper_Impl( const String &rStr )
{
- String aRet(rStr);
- Application::GetAppInternational().ToUpper(aRet);
+ String aRet( rStr );
+ CharClass aCharClass( Application::GetSettings().GetLocale() );
+ aCharClass.toUpper( aRet );
return aRet;
}