summaryrefslogtreecommitdiff
path: root/extensions
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2013-03-20 15:04:03 +0100
committerThomas Arnhold <thomas@arnhold.org>2013-03-20 15:06:48 +0100
commit11878c68c6e22373c95d4b7707aaf2c91e6a1fa1 (patch)
tree353fe5ba6643241dec5bf9c191a145b3851e2728 /extensions
parent4ea575298464faf3e02d519b4fc6ea6e1d59beb1 (diff)
Remove uses of rtl::OUString::compareToAscii(asciiStr, maxLength)
Now all should be gone. Change-Id: Iaaaebfbb85535d95eab6a2043e7d5e2e845d9782
Diffstat (limited to 'extensions')
-rw-r--r--extensions/source/update/ui/updatecheckui.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/source/update/ui/updatecheckui.cxx b/extensions/source/update/ui/updatecheckui.cxx
index d11c3a4791f2..1286d184146b 100644
--- a/extensions/source/update/ui/updatecheckui.cxx
+++ b/extensions/source/update/ui/updatecheckui.cxx
@@ -393,7 +393,7 @@ void SAL_CALL UpdateCheckUI::notifyEvent(const document::EventObject& rEvent)
{
SolarMutexGuard aGuard;
- if( rEvent.EventName.compareToAscii( RTL_CONSTASCII_STRINGPARAM("OnPrepareViewClosing") ) == 0 )
+ if( rEvent.EventName.startsWith( "OnPrepareViewClosing" ) )
{
RemoveBubbleWindow( true );
}