summaryrefslogtreecommitdiff
path: root/forms/source/component/Filter.cxx
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2011-01-20 10:30:44 +0100
committerThomas Arnhold <thomas@arnhold.org>2011-01-20 10:30:44 +0100
commit7c89e643b1152383ffa1a51e4a3b911ac1d1d36e (patch)
tree8694fcf7d05400b0e78bb33e57079eef257bd8dd /forms/source/component/Filter.cxx
parent2bc5fb34285a00e551d076e8867f12de1e218bf6 (diff)
Replace suitable equalsAscii calls with equalsAsciiL.
Done with sed -i 's%\(\.equalsAscii\)(\(\s\?"[^"]\+"\)\(\s\?\))%\1L(\3RTL_CONSTASCII_STRINGPARAM(\2\3)\3)%g'.
Diffstat (limited to 'forms/source/component/Filter.cxx')
-rw-r--r--forms/source/component/Filter.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/forms/source/component/Filter.cxx b/forms/source/component/Filter.cxx
index ca75f26b0e03..07e964bf5c43 100644
--- a/forms/source/component/Filter.cxx
+++ b/forms/source/component/Filter.cxx
@@ -573,14 +573,14 @@ namespace frm
if (xVclWindow.is())
{
Any aValue;
- if ( aText.equalsAscii( "1" )
+ if ( aText.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "1" ) )
|| aText.equalsIgnoreAsciiCaseAscii( "TRUE" )
|| aText.equalsIgnoreAsciiCaseAscii( "IS TRUE" )
)
{
aValue <<= (sal_Int32)STATE_CHECK;
}
- else if ( aText.equalsAscii( "0" )
+ else if ( aText.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "0" ) )
|| aText.equalsIgnoreAsciiCaseAscii( "FALSE" )
)
{