Kaydet (Commit) 52e74ad2 authored tarafından Arnaud Versini's avatar Arnaud Versini Kaydeden (comit) Caolán McNamara

Remove useless overrides in vcl strhelper

Change-Id: I85996380ea5b3a157ba573182da0bc380effa1e5
Reviewed-on: https://gerrit.libreoffice.org/13464Reviewed-by: 's avatarCaolán McNamara <caolanm@redhat.com>
Tested-by: 's avatarCaolán McNamara <caolanm@redhat.com>
üst e24ee457
...@@ -22,14 +22,6 @@ ...@@ -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 ) ...@@ -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 == '"';
......
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