diff options
author | Caolán McNamara <caolanm@redhat.com> | 2010-11-25 11:39:59 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2010-11-25 16:02:40 +0000 |
commit | caa01900a714c43e262354592ed52e153a5e4005 (patch) | |
tree | f226c0a9053f297abc63b94cb0528c1e7fa87f65 /vcl/source/gdi/pdfwriter_impl.hxx | |
parent | d57f95312db3d5904b203ae2893ff2f8e95f7ec3 (diff) |
cppcheck: methods can be const
Diffstat (limited to 'vcl/source/gdi/pdfwriter_impl.hxx')
-rw-r--r-- | vcl/source/gdi/pdfwriter_impl.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/gdi/pdfwriter_impl.hxx b/vcl/source/gdi/pdfwriter_impl.hxx index 95b8419a8131..a1cad67c5813 100644 --- a/vcl/source/gdi/pdfwriter_impl.hxx +++ b/vcl/source/gdi/pdfwriter_impl.hxx @@ -201,7 +201,7 @@ public: return *this; } - bool operator==( const BitmapID& rComp ) + bool operator==( const BitmapID& rComp ) const { return (m_aPixelSize == rComp.m_aPixelSize && m_nSize == rComp.m_nSize && |