diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-01-20 22:58:55 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-01-20 22:58:55 +0100 |
commit | 8fa02e0b6ad67c34c23e99140c236153eb7e3faf (patch) | |
tree | ee46c3a12c51bceb3507ac4764a8b502e9014abd | |
parent | 370613e5917366698d4d9ec078f79f9a48ce8b02 (diff) |
Missing 'const'
Change-Id: Ia1cced46dc8c76a252952129fb93be9d5a281057
-rw-r--r-- | sd/source/ui/sidebar/AllMasterPagesSelector.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/ui/sidebar/AllMasterPagesSelector.cxx b/sd/source/ui/sidebar/AllMasterPagesSelector.cxx index 9654c7b85877..596d1870f46c 100644 --- a/sd/source/ui/sidebar/AllMasterPagesSelector.cxx +++ b/sd/source/ui/sidebar/AllMasterPagesSelector.cxx @@ -53,7 +53,7 @@ class MasterPageDescriptorOrder public: bool operator() ( const SharedMasterPageDescriptor& rp1, - const SharedMasterPageDescriptor& rp2) + const SharedMasterPageDescriptor& rp2) const { if (rp1->meOrigin == MasterPageContainer::DEFAULT) return true; |