summaryrefslogtreecommitdiff
path: root/comphelper/inc/comphelper/string.hxx
diff options
context:
space:
mode:
authorSantiago Martinez <smvarela@gmail.com>2012-02-09 20:45:46 +0100
committerCaolán McNamara <caolanm@redhat.com>2012-02-10 09:52:57 +0000
commit3957a49b124fcde5e17443c18f47930517a15c36 (patch)
tree8148ca1e962eab8e9f4e8f36e485a342205b68d8 /comphelper/inc/comphelper/string.hxx
parent718ce84a06f18a3000d23287a2238a5a5299627a (diff)
Remove unused code.
Diffstat (limited to 'comphelper/inc/comphelper/string.hxx')
-rw-r--r--comphelper/inc/comphelper/string.hxx30
1 files changed, 0 insertions, 30 deletions
diff --git a/comphelper/inc/comphelper/string.hxx b/comphelper/inc/comphelper/string.hxx
index e3d11d9d48e5..3fba475b976b 100644
--- a/comphelper/inc/comphelper/string.hxx
+++ b/comphelper/inc/comphelper/string.hxx
@@ -593,16 +593,6 @@ COMPHELPER_DLLPUBLIC bool isdigitAsciiString(const rtl::OUString &rString);
*/
COMPHELPER_DLLPUBLIC bool isalnumAsciiString(const rtl::OString &rString);
-/** Determine if an OUString contains solely ASCII alphanumeric chars/digits
-
- @param rString An OUString
-
- @return false if string contains any characters outside
- the ASCII 'a'-'z', 'A'-'Z' and '0'-'9' ranges
- true otherwise, including for empty string
- */
-COMPHELPER_DLLPUBLIC bool isalnumAsciiString(const rtl::OUString &rString);
-
/** Determine if an OString contains solely ASCII lower-case chars
@param rString An OString
@@ -613,16 +603,6 @@ COMPHELPER_DLLPUBLIC bool isalnumAsciiString(const rtl::OUString &rString);
*/
COMPHELPER_DLLPUBLIC bool islowerAsciiString(const rtl::OString &rString);
-/** Determine if an OUString contains solely ASCII lower-case chars
-
- @param rString An OUString
-
- @return false if string contains any characters outside
- the ASCII 'a'-'z' ranges
- true otherwise, including for empty string
- */
-COMPHELPER_DLLPUBLIC bool islowerAsciiString(const rtl::OUString &rString);
-
/** Determine if an OString contains solely ASCII upper-case chars
@param rString An OString
@@ -633,16 +613,6 @@ COMPHELPER_DLLPUBLIC bool islowerAsciiString(const rtl::OUString &rString);
*/
COMPHELPER_DLLPUBLIC bool isupperAsciiString(const rtl::OString &rString);
-/** Determine if an OUString contains solely ASCII upper-case chars
-
- @param rString An OUString
-
- @return false if string contains any characters outside
- the ASCII 'A'-'Z' ranges
- true otherwise, including for empty string
- */
-COMPHELPER_DLLPUBLIC bool isupperAsciiString(const rtl::OUString &rString);
-
COMPHELPER_DLLPUBLIC inline bool isdigitAscii(sal_Unicode c)
{
return ((c >= '0') && (c <= '9'));