From b444e459c8a3e39c36e7cf6854bd1eae92b0e81a Mon Sep 17 00:00:00 2001 From: Janit Anjaria Date: Sat, 20 Apr 2013 01:28:01 +0530 Subject: fdo#62096 Replace O(U)String compareTo with == Using grep i figured out all the compareTo() calls and hence replaced it by == operator. --- svx/source/fmcomp/gridcell.cxx | 2 +- svx/source/fmcomp/gridctrl.cxx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'svx') diff --git a/svx/source/fmcomp/gridcell.cxx b/svx/source/fmcomp/gridcell.cxx index 29a4ef641731..dae1f8ddd0f7 100644 --- a/svx/source/fmcomp/gridcell.cxx +++ b/svx/source/fmcomp/gridcell.cxx @@ -1485,7 +1485,7 @@ CellControllerRef DbFormattedField::CreateController() const //------------------------------------------------------------------------------ void DbFormattedField::_propertyChanged( const PropertyChangeEvent& _rEvent ) throw( RuntimeException ) { - if (_rEvent.PropertyName.compareTo(FM_PROP_FORMATKEY) == COMPARE_EQUAL) + if (_rEvent.PropertyName == FM_PROP_FORMATKEY ) { sal_Int32 nNewKey = _rEvent.NewValue.hasValue() ? ::comphelper::getINT32(_rEvent.NewValue) : 0; m_nKeyType = comphelper::getNumberFormatType(m_xSupplier->getNumberFormats(), nNewKey); diff --git a/svx/source/fmcomp/gridctrl.cxx b/svx/source/fmcomp/gridctrl.cxx index 8c020494e7d4..a34d4f3a6c7b 100644 --- a/svx/source/fmcomp/gridctrl.cxx +++ b/svx/source/fmcomp/gridctrl.cxx @@ -2770,7 +2770,7 @@ void DbGridControl::DataSourcePropertyChanged(const PropertyChangeEvent& evt) th SolarMutexGuard aGuard; // prop "IsModified" changed ? // during update don't care about the modified state - if (!IsUpdating() && evt.PropertyName.compareTo(FM_PROP_ISMODIFIED) == COMPARE_EQUAL) + if (!IsUpdating() && evt.PropertyName == FM_PROP_ISMODIFIED ) { Reference< XPropertySet > xSource(evt.Source, UNO_QUERY); DBG_ASSERT( xSource.is(), "DbGridControl::DataSourcePropertyChanged: invalid event source!" ); -- cgit