diff options
author | Caolán McNamara <caolanm@redhat.com> | 2010-11-25 10:48:29 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2010-11-25 15:57:28 +0000 |
commit | 45743c1985ee3a7c32b74ef75c532b1c49448512 (patch) | |
tree | 521369f5fae2275ea1a29dbb1883154132ce3d16 /chart2/source/tools/DataSeriesHelper.cxx | |
parent | 5dff000295e8e6806aa15c65b371a901b6cb59db (diff) |
cppcheck: methods can be const
Diffstat (limited to 'chart2/source/tools/DataSeriesHelper.cxx')
-rw-r--r-- | chart2/source/tools/DataSeriesHelper.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chart2/source/tools/DataSeriesHelper.cxx b/chart2/source/tools/DataSeriesHelper.cxx index 4630ebd9b766..842086b0435e 100644 --- a/chart2/source/tools/DataSeriesHelper.cxx +++ b/chart2/source/tools/DataSeriesHelper.cxx @@ -739,7 +739,7 @@ bool hasUnhiddenData( const uno::Reference< chart2::XDataSeries >& xSeries ) struct lcl_LessIndex { - inline bool operator() ( const sal_Int32& first, const sal_Int32& second ) + inline bool operator() ( const sal_Int32& first, const sal_Int32& second ) const { return ( first < second ); } |