diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-12-18 13:22:29 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-12-18 14:12:25 +0100 |
commit | 1322c22412f1d444184fae9d0673bf9220658d23 (patch) | |
tree | 88a46f567141bf93e0515fb4ad6fe969a7b95b7d /desktop/source/splash | |
parent | 17fe6b54cdc6a71e324bf83421f22eb2954089a1 (diff) |
desktop: Use appropriate OUString functions on string constants
Change-Id: Ie35b3ab2695d9bbfc221b63b6913e21386344a33
Diffstat (limited to 'desktop/source/splash')
-rw-r--r-- | desktop/source/splash/splash.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/source/splash/splash.cxx b/desktop/source/splash/splash.cxx index 38ec781f3bd3..c406da931d08 100644 --- a/desktop/source/splash/splash.cxx +++ b/desktop/source/splash/splash.cxx @@ -370,7 +370,7 @@ void SplashScreen::loadConfig() // Determine full screen splash mode _bFullScreenSplash = (( !sFullScreenSplash.isEmpty() ) && - ( !sFullScreenSplash.equals( "0" ))); + ( sFullScreenSplash != "0" )); // Try to retrieve the relative values for the progress bar. The current // schema uses the screen ratio to retrieve the associated values. |