summaryrefslogtreecommitdiff
path: root/reportdesign
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-08-21 10:33:44 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-08-21 10:34:04 +0200
commitfe6c124da752c784c8c9578923a0033a77d3c5b3 (patch)
treeabecf6baf859612cd7255d13588ded9d204da690 /reportdesign
parent5ff8f80a27b08ed6b3c12e354080c6ea1b90b6ee (diff)
Remove demonstrated-useless comphelper::compare
Change-Id: Ifd1b38afb963255b76f0d821eb46e4c6a972128a
Diffstat (limited to 'reportdesign')
-rw-r--r--reportdesign/source/ui/report/ReportController.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/reportdesign/source/ui/report/ReportController.cxx b/reportdesign/source/ui/report/ReportController.cxx
index 0e304d561a27..301385410da6 100644
--- a/reportdesign/source/ui/report/ReportController.cxx
+++ b/reportdesign/source/ui/report/ReportController.cxx
@@ -35,7 +35,6 @@
#include <comphelper/processfactory.hxx>
#include <comphelper/property.hxx>
#include <comphelper/sequenceashashmap.hxx>
-#include <comphelper/types.hxx>
#include <connectivity/dbtools.hxx>
#include <com/sun/star/view/PaperFormat.hpp>
@@ -4137,7 +4136,7 @@ void OReportController::impl_fillState_nothrow(const OUString& _sProperty,dbaui:
{
aTemp = aTemp2;
}
- else if ( !comphelper::compare(aTemp,aTemp2) )
+ else if ( aTemp != aTemp2 )
break;
}
catch(const beans::UnknownPropertyException&)