diff options
author | Tomaž Vajngerl <tomaz.vajngerl@collabora.co.uk> | 2023-05-22 14:16:01 +0900 |
---|---|---|
committer | Tomaž Vajngerl <quikee@gmail.com> | 2023-05-25 03:58:52 +0200 |
commit | 8e87f1f2ff4df763e29bdc097786230c6293744b (patch) | |
tree | 5eb4bccc592f6c9e3c892911ee2c5b824a28becb /reportdesign | |
parent | 68c4d1ca207a82015120a770fbbc5c12fbe1abda (diff) |
svx: change NamedColor be a struct instead of std::pair
Change-Id: Ice1625e8cae8da859ea8a940b3f8e40f6f9d7037
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/152235
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'reportdesign')
-rw-r--r-- | reportdesign/source/ui/dlg/Condition.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/reportdesign/source/ui/dlg/Condition.cxx b/reportdesign/source/ui/dlg/Condition.cxx index 59a72ff6c2dc..9c78e3df79a0 100644 --- a/reportdesign/source/ui/dlg/Condition.cxx +++ b/reportdesign/source/ui/dlg/Condition.cxx @@ -200,7 +200,7 @@ IMPL_LINK(Condition, OnConditionAction, weld::Button&, rClickedButton, void) void Condition::ApplyCommand( sal_uInt16 _nCommandId, const NamedColor& rNamedColor ) { - m_rAction.applyCommand( m_nCondIndex, _nCommandId, rNamedColor.first ); + m_rAction.applyCommand(m_nCondIndex, _nCommandId, rNamedColor.m_aColor); } IMPL_LINK_NOARG( Condition, OnTypeSelected, weld::ComboBox&, void ) |