From ebf88643f3b749d1789183d8c441e5013c71a3f3 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Thu, 18 Dec 2014 13:27:46 +0100 Subject: opencl: Use appropriate OUString functions on string constants Change-Id: I0c461fa2c2ac62f9dd63e793f8cbc0c68c510082 --- opencl/source/openclconfig.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/opencl/source/openclconfig.cxx b/opencl/source/openclconfig.cxx index dd50649e5a41..2562b0db5e09 100644 --- a/opencl/source/openclconfig.cxx +++ b/opencl/source/openclconfig.cxx @@ -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 -- cgit