summaryrefslogtreecommitdiff
path: root/forms/source
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
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')
-rw-r--r--forms/source/component/Filter.cxx4
-rw-r--r--forms/source/richtext/richtextcontrol.cxx6
-rw-r--r--forms/source/richtext/specialdispatchers.cxx2
-rw-r--r--forms/source/xforms/xpathlib/extension.cxx4
4 files changed, 8 insertions, 8 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" )
)
{
diff --git a/forms/source/richtext/richtextcontrol.cxx b/forms/source/richtext/richtextcontrol.cxx
index 527e20cc75f3..7dec30b86c63 100644
--- a/forms/source/richtext/richtextcontrol.cxx
+++ b/forms/source/richtext/richtextcontrol.cxx
@@ -683,11 +683,11 @@ namespace frm
// some hard-coded slots, which do not have a UNO name at SFX level, but which
// we nevertheless need to transport via UNO mechanisms, so we need a name
- if ( _rUnoSlotName.equalsAscii( "AllowHangingPunctuation" ) )
+ if ( _rUnoSlotName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "AllowHangingPunctuation" ) ) )
return SID_ATTR_PARA_HANGPUNCTUATION;
- if ( _rUnoSlotName.equalsAscii( "ApplyForbiddenCharacterRules" ) )
+ if ( _rUnoSlotName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "ApplyForbiddenCharacterRules" ) ) )
return SID_ATTR_PARA_FORBIDDEN_RULES;
- if ( _rUnoSlotName.equalsAscii( "UseScriptSpacing" ) )
+ if ( _rUnoSlotName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "UseScriptSpacing" ) ) )
return SID_ATTR_PARA_SCRIPTSPACE;
OSL_ENSURE( pSlot, "lcl_getSlotFromUnoName: unknown UNO slot name!" );
diff --git a/forms/source/richtext/specialdispatchers.cxx b/forms/source/richtext/specialdispatchers.cxx
index 1cbd2520ee3b..aeb4427b5aaf 100644
--- a/forms/source/richtext/specialdispatchers.cxx
+++ b/forms/source/richtext/specialdispatchers.cxx
@@ -176,7 +176,7 @@ namespace frm
const PropertyValue* pLookupEnd = _rArguments.getConstArray() + _rArguments.getLength();
while ( pLookup != pLookupEnd )
{
- if ( pLookup->Name.equalsAscii( "Enable" ) )
+ if ( pLookup->Name.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "Enable" ) ) )
break;
++pLookup;
}
diff --git a/forms/source/xforms/xpathlib/extension.cxx b/forms/source/xforms/xpathlib/extension.cxx
index 28ff7941996c..ca75c23e31de 100644
--- a/forms/source/xforms/xpathlib/extension.cxx
+++ b/forms/source/xforms/xpathlib/extension.cxx
@@ -79,9 +79,9 @@ void SAL_CALL CLibxml2XFormsExtension::initialize(const Sequence< Any >& aSequen
{
if (! (aSequence[i] >>= aValue))
throw RuntimeException();
- if (aValue.Name.equalsAscii("Model"))
+ if (aValue.Name.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("Model")))
aValue.Value >>= m_aModel;
- else if (aValue.Name.equalsAscii("ContextNode"))
+ else if (aValue.Name.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("ContextNode")))
aValue.Value >>= m_aContextNode;
}
}