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 /xmlhelp | |
parent | 3fb56b38c46849569fe2035a3f377a396e2ec8fd (diff) |
Get rid of comphelper::string::is*Ascii functions
Change-Id: I99912112e5b009d7a143f9816d757cdf6ebb1783
Diffstat (limited to 'xmlhelp')
-rw-r--r-- | xmlhelp/source/cxxhelp/provider/databases.cxx | 3 | ||||
-rw-r--r-- | xmlhelp/source/treeview/tvread.cxx | 4 |
2 files changed, 3 insertions, 4 deletions
diff --git a/xmlhelp/source/cxxhelp/provider/databases.cxx b/xmlhelp/source/cxxhelp/provider/databases.cxx index e9bcfbf30810..865528ace1c3 100644 --- a/xmlhelp/source/cxxhelp/provider/databases.cxx +++ b/xmlhelp/source/cxxhelp/provider/databases.cxx @@ -59,7 +59,6 @@ #include <com/sun/star/awt/XTopWindow.hpp> #include <comphelper/storagehelper.hxx> -#include <comphelper/string.hxx> #include <vcl/svapp.hxx> @@ -1456,7 +1455,7 @@ OUString ExtensionIteratorBase::implGetFileFromPackage( inline bool isLetter( sal_Unicode c ) { - return comphelper::string::isalphaAscii(c); + return rtl::isAsciiAlpha(c); } void ExtensionIteratorBase::implGetLanguageVectorFromPackage( ::std::vector< OUString > &rv, diff --git a/xmlhelp/source/treeview/tvread.cxx b/xmlhelp/source/treeview/tvread.cxx index a13067b012b1..d8bae20cceb1 100644 --- a/xmlhelp/source/treeview/tvread.cxx +++ b/xmlhelp/source/treeview/tvread.cxx @@ -18,6 +18,7 @@ */ #include <string.h> +#include <rtl/character.hxx> #include <rtl/ustrbuf.hxx> #include <osl/diagnose.h> #include "tvread.hxx" @@ -35,7 +36,6 @@ #include <com/sun/star/uri/UriReferenceFactory.hpp> #include <com/sun/star/uri/XVndSunStarExpandUrl.hpp> #include <i18nlangtag/languagetag.hxx> -#include <comphelper/string.hxx> #include <unotools/pathoptions.hxx> namespace treeview { @@ -1038,7 +1038,7 @@ Reference< deployment::XPackage > ExtensionIteratorBase::implGetNextBundledHelpP inline bool isLetter( sal_Unicode c ) { - return comphelper::string::isalphaAscii(c); + return rtl::isAsciiAlpha(c); } void ExtensionIteratorBase::implGetLanguageVectorFromPackage( ::std::vector< OUString > &rv, |