summaryrefslogtreecommitdiff
path: root/svtools/source/uno/statusbarcontroller.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svtools/source/uno/statusbarcontroller.cxx')
-rw-r--r--svtools/source/uno/statusbarcontroller.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/svtools/source/uno/statusbarcontroller.cxx b/svtools/source/uno/statusbarcontroller.cxx
index ee6e6455d666..2cb1d9c55a78 100644
--- a/svtools/source/uno/statusbarcontroller.cxx
+++ b/svtools/source/uno/statusbarcontroller.cxx
@@ -160,15 +160,15 @@ throw ( Exception, RuntimeException )
{
if ( aArguments[i] >>= aPropValue )
{
- if ( aPropValue.Name.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("Frame")) )
+ if ( aPropValue.Name == "Frame" )
aPropValue.Value >>= m_xFrame;
- else if ( aPropValue.Name.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("CommandURL")) )
+ else if ( aPropValue.Name == "CommandURL" )
aPropValue.Value >>= m_aCommandURL;
- else if ( aPropValue.Name.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("ServiceManager")) )
+ else if ( aPropValue.Name == "ServiceManager" )
aPropValue.Value >>= m_xServiceManager;
- else if ( aPropValue.Name.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("ParentWindow")) )
+ else if ( aPropValue.Name == "ParentWindow" )
aPropValue.Value >>= m_xParentWindow;
- else if ( aPropValue.Name.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("Identifier")) )
+ else if ( aPropValue.Name == "Identifier" )
aPropValue.Value >>= m_nID;
}
}