diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-06-23 18:39:30 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-06-24 15:27:28 +0200 |
commit | 6390d2c52b75b2868d5ee98863a0af4f103c12e5 (patch) | |
tree | ed9f11baf9f45d2de0270eb1a61983fb4a302df9 /svl | |
parent | 3fb56b38c46849569fe2035a3f377a396e2ec8fd (diff) |
Get rid of comphelper::string::is*Ascii functions
Change-Id: I99912112e5b009d7a143f9816d757cdf6ebb1783
Diffstat (limited to 'svl')
-rw-r--r-- | svl/source/passwordcontainer/passwordcontainer.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svl/source/passwordcontainer/passwordcontainer.cxx b/svl/source/passwordcontainer/passwordcontainer.cxx index 31175d156b3d..81e8bbb95ee5 100644 --- a/svl/source/passwordcontainer/passwordcontainer.cxx +++ b/svl/source/passwordcontainer/passwordcontainer.cxx @@ -24,7 +24,6 @@ #include <cppuhelper/factory.hxx> #include <cppuhelper/supportsservice.hxx> #include <comphelper/processfactory.hxx> -#include <comphelper/string.hxx> #include <com/sun/star/registry/XSimpleRegistry.hpp> #include <com/sun/star/beans/PropertyValue.hpp> #include <com/sun/star/task/InteractionHandler.hpp> @@ -32,6 +31,7 @@ #include <com/sun/star/task/NoMasterException.hpp> #include <osl/diagnose.h> +#include <rtl/character.hxx> #include <rtl/cipher.h> #include <rtl/digest.h> #include <rtl/byteseq.hxx> @@ -60,7 +60,7 @@ static OUString createIndex(const vector< OUString >& lines) while( *pLine ) { - if (comphelper::string::isalnumAscii(*pLine)) + if (rtl::isAsciiAlphanumeric(static_cast<unsigned char>(*pLine))) { aResult += OString( *pLine ); } |