summaryrefslogtreecommitdiff
path: root/svl/source/uno
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-11-05 14:39:55 +0200
committerNoel Grandin <noel@peralex.com>2013-11-11 12:58:13 +0200
commitfcd1637d5101b9142e6808edfb77b01122857901 (patch)
tree5fd09f97de80cf2a9481bd55a798015db35f1d0c /svl/source/uno
parentef90021abe3735fba57145598fd7c3d359d2718e (diff)
convert OUString compareToAscii == 0 to equalsAscii
Convert code like aStr.compareToAscii("XXX") == 0 to aStr.equalsAscii("XXX") which is both easier to read and faster. Change-Id: I448abf58f2fa0e7715dba53f8e8825ca0587c83f
Diffstat (limited to 'svl/source/uno')
-rw-r--r--svl/source/uno/pathservice.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svl/source/uno/pathservice.cxx b/svl/source/uno/pathservice.cxx
index 07b57a1257b5..f20611f6e0b6 100644
--- a/svl/source/uno/pathservice.cxx
+++ b/svl/source/uno/pathservice.cxx
@@ -46,7 +46,7 @@ public:
const OUString & rName)
throw(css::uno::RuntimeException)
{
- return (rName.compareToAscii("com.sun.star.config.SpecialConfigManager") == 0);
+ return rName.equalsAscii("com.sun.star.config.SpecialConfigManager");
}
virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames()