Kaydet (Commit) 326fad3c authored tarafından Noel Grandin's avatar Noel Grandin Kaydeden (comit) Noel Grandin

remove deprecated methods in unotools::CharClass

not used anymore

Change-Id: Ib9436ea0cafef29ed7da5076e89d97419a9c7443
Reviewed-on: https://gerrit.libreoffice.org/17147Reviewed-by: 's avatarNoel Grandin <noelgrandin@gmail.com>
Tested-by: 's avatarNoel Grandin <noelgrandin@gmail.com>
üst 6353dc86
......@@ -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 );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment