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:
committed by
Caolán McNamara
parent
e24ee457be
commit
52e74ad27c
@@ -22,14 +22,6 @@
|
|||||||
|
|
||||||
namespace psp {
|
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 )
|
inline bool isSpace( sal_Unicode cChar )
|
||||||
{
|
{
|
||||||
return
|
return
|
||||||
@@ -38,11 +30,6 @@ inline bool isSpace( sal_Unicode cChar )
|
|||||||
cChar == 0x0c || cChar == 0x0b;
|
cChar == 0x0c || cChar == 0x0b;
|
||||||
}
|
}
|
||||||
|
|
||||||
inline bool isProtect( char cChar )
|
|
||||||
{
|
|
||||||
return cChar == '`' || cChar == '\'' || cChar == '"';
|
|
||||||
}
|
|
||||||
|
|
||||||
inline bool isProtect( sal_Unicode cChar )
|
inline bool isProtect( sal_Unicode cChar )
|
||||||
{
|
{
|
||||||
return cChar == '`' || cChar == '\'' || cChar == '"';
|
return cChar == '`' || cChar == '\'' || cChar == '"';
|
||||||
|
Reference in New Issue
Block a user