summaryrefslogtreecommitdiff
path: root/chart2/source/model/main/ChartModel_Persistence.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-07-13 09:53:35 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-07-13 11:02:55 +0200
commit8a75aa52ef572655db261679da431aff84f52348 (patch)
treec1d6133b1942c756d9160c51c2f95abfbaab5780 /chart2/source/model/main/ChartModel_Persistence.cxx
parent46ba298934d1765365018349f26f8a732cefba63 (diff)
use more OUString::operator== in a*..chart2
Change-Id: Ifb5608abebffd9687ed55e8c74f9be54a749111d Reviewed-on: https://gerrit.libreoffice.org/39887 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'chart2/source/model/main/ChartModel_Persistence.cxx')
-rw-r--r--chart2/source/model/main/ChartModel_Persistence.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/chart2/source/model/main/ChartModel_Persistence.cxx b/chart2/source/model/main/ChartModel_Persistence.cxx
index 9529e4e8a1ab..fddebed2f705 100644
--- a/chart2/source/model/main/ChartModel_Persistence.cxx
+++ b/chart2/source/model/main/ChartModel_Persistence.cxx
@@ -75,7 +75,7 @@ struct lcl_PropNameEquals
{}
bool operator() ( const beans::PropertyValue & rProp )
{
- return rProp.Name.equals( m_aStr );
+ return rProp.Name == m_aStr;
}
private:
OUString m_aStr;