summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-07-17 08:59:39 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-07-17 11:07:41 +0000
commit326fad3c95a59a3202ab1c083834fb923f96258f (patch)
tree23100f694c3bc6a20c9baa47478494c21da344ea /include
parent6353dc86585df7796200eabe1e2be8511211adee (diff)
remove deprecated methods in unotools::CharClass
not used anymore Change-Id: Ib9436ea0cafef29ed7da5076e89d97419a9c7443 Reviewed-on: https://gerrit.libreoffice.org/17147 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include')
-rw-r--r--include/unotools/charclass.hxx21
1 files changed, 0 insertions, 21 deletions
diff --git a/include/unotools/charclass.hxx b/include/unotools/charclass.hxx
index af4994e0a2aa..629700c585f9 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 );