[Libreoffice-commits] core.git: include/unotools
Noel Grandin
noel at peralex.com
Fri Jul 17 04:08:07 PDT 2015
include/unotools/charclass.hxx | 21 ---------------------
1 file changed, 21 deletions(-)
New commits:
commit 326fad3c95a59a3202ab1c083834fb923f96258f
Author: Noel Grandin <noel at peralex.com>
Date: Fri Jul 17 08:59:39 2015 +0200
remove deprecated methods in unotools::CharClass
not used anymore
Change-Id: Ib9436ea0cafef29ed7da5076e89d97419a9c7443
Reviewed-on: https://gerrit.libreoffice.org/17147
Reviewed-by: Noel Grandin <noelgrandin at gmail.com>
Tested-by: Noel Grandin <noelgrandin at gmail.com>
diff --git a/include/unotools/charclass.hxx b/include/unotools/charclass.hxx
index af4994e..629700c 100644
--- a/include/unotools/charclass.hxx
+++ b/include/unotools/charclass.hxx
@@ -90,27 +90,6 @@ public:
/// get current Locale
const LanguageTag& getLanguageTag() const;
- /// isdigit() on ascii values
- SAL_DEPRECATED("Use rtl::isAsciiDigit instead")
- static inline bool isAsciiDigit( sal_Unicode c )
- {
- return rtl::isAsciiDigit( c );
- }
-
- /// isalpha() on ascii values
- SAL_DEPRECATED("Use rtl::isAsciiAlpha instead")
- static inline bool isAsciiAlpha( sal_Unicode c )
- {
- return rtl::isAsciiAlpha( c );
- }
-
- /// isalnum() on ascii values
- SAL_DEPRECATED("Use rtl::isAsciiAlphanumeric instead")
- static inline bool isAsciiAlphaNumeric( sal_Unicode c )
- {
- return rtl::isAsciiAlphanumeric( c );
- }
-
/// isdigit() on ascii values of entire string
static bool isAsciiNumeric( const OUString& rStr );
More information about the Libreoffice-commits
mailing list