summaryrefslogtreecommitdiff
path: root/odk/examples/DevelopersGuide/Components/Addons/ProtocolHandlerAddon_cpp/addon.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'odk/examples/DevelopersGuide/Components/Addons/ProtocolHandlerAddon_cpp/addon.cxx')
-rw-r--r--odk/examples/DevelopersGuide/Components/Addons/ProtocolHandlerAddon_cpp/addon.cxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/odk/examples/DevelopersGuide/Components/Addons/ProtocolHandlerAddon_cpp/addon.cxx b/odk/examples/DevelopersGuide/Components/Addons/ProtocolHandlerAddon_cpp/addon.cxx
index a9d78f988362..c9bd218046ba 100644
--- a/odk/examples/DevelopersGuide/Components/Addons/ProtocolHandlerAddon_cpp/addon.cxx
+++ b/odk/examples/DevelopersGuide/Components/Addons/ProtocolHandlerAddon_cpp/addon.cxx
@@ -115,13 +115,13 @@ Reference< XDispatch > SAL_CALL Addon::queryDispatch( const URL& aURL, const ::r
throw( RuntimeException )
{
Reference < XDispatch > xRet;
- if ( aURL.Protocol.compareToAscii("org.openoffice.Office.addon.example:") == 0 )
+ if ( aURL.Protocol.equalsAscii("org.openoffice.Office.addon.example:") )
{
- if ( aURL.Path.compareToAscii( "Function1" ) == 0 )
+ if ( aURL.Path.equalsAscii( "Function1" ) )
xRet = this;
- else if ( aURL.Path.compareToAscii( "Function2" ) == 0 )
+ else if ( aURL.Path.equalsAscii( "Function2" ) )
xRet = this;
- else if ( aURL.Path.compareToAscii( "Help" ) == 0 )
+ else if ( aURL.Path.equalsAscii( "Help" ) )
xRet = this;
}
@@ -134,21 +134,21 @@ Reference< XDispatch > SAL_CALL Addon::queryDispatch( const URL& aURL, const ::r
*/
void SAL_CALL Addon::dispatch( const URL& aURL, const Sequence < PropertyValue >& lArgs ) throw (RuntimeException)
{
- if ( aURL.Protocol.compareToAscii("org.openoffice.Office.addon.example:") == 0 )
+ if ( aURL.Protocol.equalsAscii("org.openoffice.Office.addon.example:") )
{
- if ( aURL.Path.compareToAscii( "Function1" ) == 0 )
+ if ( aURL.Path.equalsAscii( "Function1" ) )
{
ShowMessageBox( mxToolkit, mxFrame,
OUString( "SDK Add-On example" ),
OUString( "Function 1 activated" ) );
}
- else if ( aURL.Path.compareToAscii( "Function2" ) == 0 )
+ else if ( aURL.Path.equalsAscii( "Function2" ) )
{
ShowMessageBox( mxToolkit, mxFrame,
OUString( "SDK Add-On example" ),
OUString( "Function 2 activated" ) );
}
- else if ( aURL.Path.compareToAscii( "Help" ) == 0 )
+ else if ( aURL.Path.equalsAscii( "Help" ) )
{
// Show info box
ShowMessageBox( mxToolkit, mxFrame,