From e965798caf75054d8fc826a4cfa33524cbbcec42 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Fri, 12 Dec 2014 12:23:11 +0100 Subject: svtools: Use appropriate OUString functions on string constants Change-Id: I8799033322d345b2f146c3577d3d264448252816 --- svtools/source/uno/addrtempuno.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'svtools/source/uno/addrtempuno.cxx') diff --git a/svtools/source/uno/addrtempuno.cxx b/svtools/source/uno/addrtempuno.cxx index 3c9772945e02..f1a0760bb292 100644 --- a/svtools/source/uno/addrtempuno.cxx +++ b/svtools/source/uno/addrtempuno.cxx @@ -177,7 +177,7 @@ namespace { PropertyValue aVal; if (_rValue >>= aVal) { - if (aVal.Name.equalsAscii("DataSource")) + if (aVal.Name == "DataSource") { #if OSL_DEBUG_LEVEL > 0 bool bSuccess = @@ -187,7 +187,7 @@ namespace { return; } - if (aVal.Name.equalsAscii("DataSourceName")) + if (aVal.Name == "DataSourceName") { #if OSL_DEBUG_LEVEL > 0 bool bSuccess = @@ -197,7 +197,7 @@ namespace { return; } - if (aVal.Name.equalsAscii("Command")) + if (aVal.Name == "Command") { #if OSL_DEBUG_LEVEL > 0 bool bSuccess = -- cgit