diff options
author | Noel Grandin <noel@peralex.com> | 2015-11-06 09:23:33 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-11-09 08:34:40 +0000 |
commit | 6c80a8fe89fadf9a2c7260a09c037a09462f53d1 (patch) | |
tree | d36da9ee2a5fdc579d2a57ff6ba02deaddfa785a /vcl | |
parent | e1fc599eb764186e5d511ace9785463eebbc7028 (diff) |
new loplugin: oncevar
Change-Id: If57390510dde4d166be3141b9f658a7453755d3f
Reviewed-on: https://gerrit.libreoffice.org/19815
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/components/dtranscomp.cxx | 34 | ||||
-rw-r--r-- | vcl/source/components/fontident.cxx | 4 | ||||
-rw-r--r-- | vcl/source/control/field2.cxx | 10 | ||||
-rw-r--r-- | vcl/unx/generic/desktopdetect/desktopdetector.cxx | 38 |
4 files changed, 32 insertions, 54 deletions
diff --git a/vcl/source/components/dtranscomp.cxx b/vcl/source/components/dtranscomp.cxx index bbe623aee352..6dc83ff295d0 100644 --- a/vcl/source/components/dtranscomp.cxx +++ b/vcl/source/components/dtranscomp.cxx @@ -346,18 +346,13 @@ void GenericDragSource::initialize( const Sequence< Any >& ) throw( Exception, s Sequence< OUString > SAL_CALL DragSource_getSupportedServiceNames() { - #if defined UNX - OUString aServiceName( - #if ! defined MACOSX - "com.sun.star.datatransfer.dnd.X11DragSource" - #else - "com.sun.star.datatransfer.dnd.OleDragSource" - #endif - ); - return Sequence< OUString >(&aServiceName, 1); - #else +#if defined MACOSX + return Sequence< OUString > { "com.sun.star.datatransfer.dnd.OleDragSource" }; +#elif defined UNX + return Sequence< OUString > { "com.sun.star.datatransfer.dnd.X11DragSource" }; +#else return GenericDragSource::getSupportedServiceNames_static(); - #endif +#endif } OUString SAL_CALL DragSource_getImplementationName() @@ -470,18 +465,13 @@ void GenericDropTarget::setDefaultActions( sal_Int8) throw(std::exception) Sequence< OUString > SAL_CALL DropTarget_getSupportedServiceNames() { - #if defined UNX - OUString aServiceName( - #if ! defined MACOSX - "com.sun.star.datatransfer.dnd.X11DropTarget" - #else - "com.sun.star.datatransfer.dnd.OleDropTarget" - #endif - ); - return Sequence< OUString >(&aServiceName, 1); - #else +#if defined MACOSX + return Sequence< OUString > { "com.sun.star.datatransfer.dnd.OleDropTarget" }; +#elif defined UNX + return Sequence< OUString > { "com.sun.star.datatransfer.dnd.X11DropTarget" }; +#else return GenericDropTarget::getSupportedServiceNames_static(); - #endif +#endif } OUString SAL_CALL DropTarget_getImplementationName() diff --git a/vcl/source/components/fontident.cxx b/vcl/source/components/fontident.cxx index d80dd74f59fa..11066c63ae9e 100644 --- a/vcl/source/components/fontident.cxx +++ b/vcl/source/components/fontident.cxx @@ -154,9 +154,7 @@ Any SAL_CALL FontIdentificator::getMaterial() throw(RuntimeException, std::excep Sequence< OUString > FontIdentificator_getSupportedServiceNames() { - OUString aServiceName( "com.sun.star.awt.FontIdentificator" ); - Sequence< OUString > aServiceNames( &aServiceName, 1 ); - return aServiceNames; + return Sequence< OUString >{ "com.sun.star.awt.FontIdentificator" }; } OUString FontIdentificator_getImplementationName() diff --git a/vcl/source/control/field2.cxx b/vcl/source/control/field2.cxx index ddcd40c8f5ef..0c2644994e93 100644 --- a/vcl/source/control/field2.cxx +++ b/vcl/source/control/field2.cxx @@ -2125,15 +2125,13 @@ static bool ImplTimeGetValue( const OUString& rStr, tools::Time& rTime, return false; OUString aUpperCaseStr = aStr.toString().toAsciiUpperCase(); - OUString aAM(rLocaleDataWrapper.getTimeAM().toAsciiUpperCase()); - OUString aPM(rLocaleDataWrapper.getTimePM().toAsciiUpperCase()); - OUString aAM2("AM"); // aAM is localized - OUString aPM2("PM"); // aPM is localized + OUString aAMlocalised(rLocaleDataWrapper.getTimeAM().toAsciiUpperCase()); + OUString aPMlocalised(rLocaleDataWrapper.getTimePM().toAsciiUpperCase()); - if ( (nHour < 12) && ( ( aUpperCaseStr.indexOf( aPM ) >= 0 ) || ( aUpperCaseStr.indexOf( aPM2 ) >= 0 ) ) ) + if ( (nHour < 12) && ( ( aUpperCaseStr.indexOf( "PM" ) >= 0 ) || ( aUpperCaseStr.indexOf( aPMlocalised ) >= 0 ) ) ) nHour += 12; - if ( (nHour == 12) && ( ( aUpperCaseStr.indexOf( aAM ) >= 0 ) || ( aUpperCaseStr.indexOf( aAM2 ) >= 0 ) ) ) + if ( (nHour == 12) && ( ( aUpperCaseStr.indexOf( "AM" ) >= 0 ) || ( aUpperCaseStr.indexOf( aAMlocalised ) >= 0 ) ) ) nHour = 0; aTime = tools::Time( (sal_uInt16)nHour, (sal_uInt16)nMinute, (sal_uInt16)nSecond, diff --git a/vcl/unx/generic/desktopdetect/desktopdetector.cxx b/vcl/unx/generic/desktopdetect/desktopdetector.cxx index 2f8ee6629842..f769bf075438 100644 --- a/vcl/unx/generic/desktopdetect/desktopdetector.cxx +++ b/vcl/unx/generic/desktopdetect/desktopdetector.cxx @@ -231,18 +231,18 @@ static bool is_tde_desktop( Display* pDisplay ) return false; } -static bool is_kde_desktop( Display* pDisplay ) +static bool is_kde3_desktop( Display* pDisplay ) { - if ( NULL != getenv( "KDE_FULL_SESSION" ) ) + static const char * pFullVersion = getenv( "KDE_FULL_SESSION" ); + static const char * pSessionVersion = getenv( "KDE_SESSION_VERSION" ); + if ( pFullVersion ) { - const char *pVer = getenv( "KDE_SESSION_VERSION" ); - if ( !pVer || pVer[0] == '0' ) + if ( !pSessionVersion || pSessionVersion[0] == '0' ) { return true; // does not exist => KDE3 } - OUString aVer( "3" ); - if ( aVer.equalsIgnoreAsciiCaseAscii( pVer ) ) + if ( strcmp(pSessionVersion, "3" ) == 0 ) { return true; } @@ -256,14 +256,10 @@ static bool is_kde_desktop( Display* pDisplay ) static bool is_kde4_desktop( Display* pDisplay ) { - if ( NULL != getenv( "KDE_FULL_SESSION" ) ) - { - OUString aVer( "4" ); - - const char *pVer = getenv( "KDE_SESSION_VERSION" ); - if ( pVer && aVer.equalsIgnoreAsciiCaseAscii( pVer ) ) - return true; - } + static const char * pFullVersion = getenv( "KDE_FULL_SESSION" ); + static const char * pSessionVersion = getenv( "KDE_SESSION_VERSION" ); + if ( pFullVersion && pSessionVersion && strcmp(pSessionVersion, "4") == 0 ) + return true; if ( KDEVersion( pDisplay ) == 4 ) return true; @@ -273,14 +269,10 @@ static bool is_kde4_desktop( Display* pDisplay ) static bool is_kde5_desktop( Display* pDisplay ) { - if ( NULL != getenv( "KDE_FULL_SESSION" ) ) - { - OUString aVer( "5" ); - - const char *pVer = getenv( "KDE_SESSION_VERSION" ); - if ( pVer && aVer.equalsIgnoreAsciiCaseAscii( pVer ) ) - return true; - } + static const char * pFullVersion = getenv( "KDE_FULL_SESSION" ); + static const char * pSessionVersion = getenv( "KDE_SESSION_VERSION" ); + if ( pFullVersion && pSessionVersion && strcmp(pSessionVersion, "5") ) + return true; if ( KDEVersion( pDisplay ) == 5 ) return true; @@ -400,7 +392,7 @@ DESKTOP_DETECTOR_PUBLIC DesktopType get_desktop_environment() ret = DESKTOP_KDE4; else if ( is_gnome_desktop( pDisplay ) ) ret = DESKTOP_GNOME; - else if ( is_kde_desktop( pDisplay ) ) + else if ( is_kde3_desktop( pDisplay ) ) ret = DESKTOP_KDE3; else if ( is_tde_desktop( pDisplay ) ) ret = DESKTOP_TDE; |