diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2020-11-18 00:00:24 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2020-11-18 08:30:31 +0100 |
commit | c446adbcbd0fac9668de9cb3c48f3b57b95ba785 (patch) | |
tree | 77d68e471b4c9459ec29f59fdffdc7fb33fc9180 /reportdesign | |
parent | 63d8041c60c5d7c63dd34f94a694871b7ea9e2ca (diff) |
Clarify signature of some opertor() that must match ColorSelectFunction
Change-Id: Ibb71d1e993bbb0fa453c59f48ab5f7c79e1d8025
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/106036
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'reportdesign')
-rw-r--r-- | reportdesign/source/ui/dlg/Condition.cxx | 3 | ||||
-rw-r--r-- | reportdesign/source/ui/dlg/Condition.hxx | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/reportdesign/source/ui/dlg/Condition.cxx b/reportdesign/source/ui/dlg/Condition.cxx index 2b44e1e549be..9918cd22abcc 100644 --- a/reportdesign/source/ui/dlg/Condition.cxx +++ b/reportdesign/source/ui/dlg/Condition.cxx @@ -73,7 +73,8 @@ ConditionColorWrapper::ConditionColorWrapper(Condition* pControl, sal_uInt16 nSl { } -void ConditionColorWrapper::operator()(const OUString& /*rCommand*/, const NamedColor& rNamedColor) +void ConditionColorWrapper::operator()( + [[maybe_unused]] const OUString& /*rCommand*/, const NamedColor& rNamedColor) { mpControl->ApplyCommand(mnSlotId, rNamedColor); } diff --git a/reportdesign/source/ui/dlg/Condition.hxx b/reportdesign/source/ui/dlg/Condition.hxx index 641c1a2bf5dc..fe6fbb707356 100644 --- a/reportdesign/source/ui/dlg/Condition.hxx +++ b/reportdesign/source/ui/dlg/Condition.hxx @@ -59,6 +59,7 @@ namespace rptui public: ConditionColorWrapper(Condition* pControl, sal_uInt16 nSlotId); void operator()(const OUString& rCommand, const NamedColor& rColor); + // ColorSelectFunction signature private: Condition* mpControl; sal_uInt16 mnSlotId; |