opencl: Use appropriate OUString functions on string constants

Change-Id: I0c461fa2c2ac62f9dd63e793f8cbc0c68c510082
This commit is contained in:
Stephan Bergmann
2014-12-18 13:27:46 +01:00
parent e1d6d5dd87
commit ebf88643f3

View File

@@ -114,7 +114,7 @@ OpenCLConfig::ImplMatcherSet StringSequenceToSetOfImplMatcher(const css::uno::Se
bool match(const OUString& rPattern, const OUString& rInput)
{
if (rPattern == "")
if (rPattern.isEmpty())
return true;
UErrorCode nIcuError(U_ZERO_ERROR);
@@ -131,13 +131,13 @@ bool match(const OUString& rPattern, const OUString& rInput)
bool match(const OpenCLConfig::ImplMatcher& rListEntry, const OpenCLPlatformInfo& rPlatform, const OpenCLDeviceInfo& rDevice)
{
#if defined WNT
if (rListEntry.maOS != "" && rListEntry.maOS != "Windows")
if (!rListEntry.maOS.isEmpty() && rListEntry.maOS != "Windows")
return false;
#elif defined LINUX
if (rListEntry.maOS != "" && rListEntry.maOS != "Linux")
if (!rListEntry.maOS.isEmpty() && rListEntry.maOS != "Linux")
return false;
#elif defined MACOSX
if (rListEntry.maOS != "" && rListEntry.maOS != "OS X")
if (!rListEntry.maOS.isEmpty() && rListEntry.maOS != "OS X")
return false;
#endif