diff options
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/appl/appdde.cxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sfx2/source/appl/appdde.cxx b/sfx2/source/appl/appdde.cxx index 081d6770cd04..233a2a03d093 100644 --- a/sfx2/source/appl/appdde.cxx +++ b/sfx2/source/appl/appdde.cxx @@ -18,7 +18,7 @@ */ #include <config_features.h> - +#include <rtl/character.hxx> #include <vcl/wrkwin.hxx> #include <svl/rectitem.hxx> #include <svl/eitem.hxx> @@ -43,7 +43,6 @@ #include "helper.hxx" #include <sfx2/docfile.hxx> #include <comphelper/processfactory.hxx> -#include <comphelper/string.hxx> #include <com/sun/star/ucb/IllegalIdentifierException.hpp> #if defined WNT @@ -55,7 +54,7 @@ OUString SfxDdeServiceName_Impl( const OUString& sIn ) for ( sal_uInt16 n = sIn.getLength(); n; --n ) { sal_Unicode cChar = sIn[n-1]; - if (comphelper::string::isalnumAscii(cChar)) + if (rtl::isAsciiAlphanumeric(cChar)) sReturn.append(cChar); } |