Remove useless overrides in vcl strhelper

Change-Id: I85996380ea5b3a157ba573182da0bc380effa1e5
Reviewed-on: https://gerrit.libreoffice.org/13464
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
This commit is contained in:
Arnaud Versini
2014-12-13 11:43:24 +01:00
committed by Caolán McNamara
parent e24ee457be
commit 52e74ad27c

View File

@@ -22,14 +22,6 @@
namespace psp {
inline bool isSpace( char cChar )
{
return
cChar == ' ' || cChar == '\t' ||
cChar == '\r' || cChar == '\n' ||
cChar == 0x0c || cChar == 0x0b;
}
inline bool isSpace( sal_Unicode cChar )
{
return
@@ -38,11 +30,6 @@ inline bool isSpace( sal_Unicode cChar )
cChar == 0x0c || cChar == 0x0b;
}
inline bool isProtect( char cChar )
{
return cChar == '`' || cChar == '\'' || cChar == '"';
}
inline bool isProtect( sal_Unicode cChar )
{
return cChar == '`' || cChar == '\'' || cChar == '"';