summaryrefslogtreecommitdiff
path: root/svtools/source/uno/addrtempuno.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-12-12 12:23:11 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-12-12 12:23:11 +0100
commite965798caf75054d8fc826a4cfa33524cbbcec42 (patch)
treee76eef188955863bf4024c76aa03cc765d894ad2 /svtools/source/uno/addrtempuno.cxx
parentfc45562945127b73d76deb1101ce7a9ba9135054 (diff)
svtools: Use appropriate OUString functions on string constants
Change-Id: I8799033322d345b2f146c3577d3d264448252816
Diffstat (limited to 'svtools/source/uno/addrtempuno.cxx')
-rw-r--r--svtools/source/uno/addrtempuno.cxx6
1 files changed, 3 insertions, 3 deletions
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 =