diff options
author | Caolán McNamara <caolanm@redhat.com> | 2020-04-25 20:17:05 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2020-04-25 22:43:39 +0200 |
commit | d26d1da82f0625ce1e5a99cc0081b1fcf422b315 (patch) | |
tree | 5f4fa18baa60dc09f24b4681dc04b3a76599244e /sc | |
parent | 33966ab25d21594a3a4f40ce30ece73fa4f45a27 (diff) |
rename SvtValueSet back to ValueSet
Change-Id: I51ab96ffef7acc0d416d13ac8e380e49381f4d1d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/92902
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/ui/inc/tabbgcolordlg.hxx | 2 | ||||
-rw-r--r-- | sc/source/ui/miscdlgs/tabbgcolordlg.cxx | 2 | ||||
-rw-r--r-- | sc/source/ui/sidebar/CellLineStyleControl.cxx | 2 | ||||
-rw-r--r-- | sc/source/ui/sidebar/CellLineStyleControl.hxx | 2 | ||||
-rw-r--r-- | sc/source/ui/sidebar/CellLineStyleValueSet.cxx | 4 | ||||
-rw-r--r-- | sc/source/ui/sidebar/CellLineStyleValueSet.hxx | 2 |
6 files changed, 7 insertions, 7 deletions
diff --git a/sc/source/ui/inc/tabbgcolordlg.hxx b/sc/source/ui/inc/tabbgcolordlg.hxx index 62ee5cd1eaf7..0eea402d1f89 100644 --- a/sc/source/ui/inc/tabbgcolordlg.hxx +++ b/sc/source/ui/inc/tabbgcolordlg.hxx @@ -62,7 +62,7 @@ private: void FillPaletteLB(); DECL_LINK(SelectPaletteLBHdl, weld::ComboBox&, void); - DECL_LINK(TabBgColorDblClickHdl_Impl, SvtValueSet*, void); + DECL_LINK(TabBgColorDblClickHdl_Impl, ValueSet*, void); DECL_LINK(TabBgColorOKHdl_Impl, weld::Button&, void); }; diff --git a/sc/source/ui/miscdlgs/tabbgcolordlg.cxx b/sc/source/ui/miscdlgs/tabbgcolordlg.cxx index 84241f5b655f..aa19882544c6 100644 --- a/sc/source/ui/miscdlgs/tabbgcolordlg.cxx +++ b/sc/source/ui/miscdlgs/tabbgcolordlg.cxx @@ -95,7 +95,7 @@ IMPL_LINK_NOARG(ScTabBgColorDlg, SelectPaletteLBHdl, weld::ComboBox&, void) } // Handler, called when color selection is changed -IMPL_LINK_NOARG(ScTabBgColorDlg, TabBgColorDblClickHdl_Impl, SvtValueSet*, void) +IMPL_LINK_NOARG(ScTabBgColorDlg, TabBgColorDblClickHdl_Impl, ValueSet*, void) { sal_uInt16 nItemId = m_xTabBgColorSet->GetSelectedItemId(); Color aColor = nItemId ? ( m_xTabBgColorSet->GetItemColor( nItemId ) ) : COL_AUTO; diff --git a/sc/source/ui/sidebar/CellLineStyleControl.cxx b/sc/source/ui/sidebar/CellLineStyleControl.cxx index 7a545963aff7..beae25ff03bd 100644 --- a/sc/source/ui/sidebar/CellLineStyleControl.cxx +++ b/sc/source/ui/sidebar/CellLineStyleControl.cxx @@ -92,7 +92,7 @@ void CellLineStylePopup::SetAllNoSel() mxCellLineStyleValueSet->Invalidate(); } -IMPL_LINK_NOARG(CellLineStylePopup, VSSelectHdl, SvtValueSet*, void) +IMPL_LINK_NOARG(CellLineStylePopup, VSSelectHdl, ValueSet*, void) { const sal_uInt16 iPos(mxCellLineStyleValueSet->GetSelectedItemId()); SvxLineItem aLineItem(SID_FRAME_LINESTYLE); diff --git a/sc/source/ui/sidebar/CellLineStyleControl.hxx b/sc/source/ui/sidebar/CellLineStyleControl.hxx index e620751a96a5..29b10904f514 100644 --- a/sc/source/ui/sidebar/CellLineStyleControl.hxx +++ b/sc/source/ui/sidebar/CellLineStyleControl.hxx @@ -40,7 +40,7 @@ private: void Initialize(); void SetAllNoSel(); - DECL_LINK(VSSelectHdl, SvtValueSet*, void); + DECL_LINK(VSSelectHdl, ValueSet*, void); DECL_LINK(PBClickHdl, weld::Button&, void); public: diff --git a/sc/source/ui/sidebar/CellLineStyleValueSet.cxx b/sc/source/ui/sidebar/CellLineStyleValueSet.cxx index dac0df57380f..624df4882efd 100644 --- a/sc/source/ui/sidebar/CellLineStyleValueSet.cxx +++ b/sc/source/ui/sidebar/CellLineStyleValueSet.cxx @@ -26,7 +26,7 @@ namespace sc::sidebar { CellLineStyleValueSet::CellLineStyleValueSet() - : SvtValueSet(nullptr) + : ValueSet(nullptr) , nSelItem(0) { } @@ -37,7 +37,7 @@ CellLineStyleValueSet::~CellLineStyleValueSet() void CellLineStyleValueSet::SetDrawingArea(weld::DrawingArea* pDrawingArea) { - SvtValueSet::SetDrawingArea(pDrawingArea); + ValueSet::SetDrawingArea(pDrawingArea); Size aSize = pDrawingArea->get_ref_device().LogicToPixel(Size(80, 12 * 9), MapMode(MapUnit::MapAppFont)); pDrawingArea->set_size_request(aSize.Width(), aSize.Height()); SetOutputSizePixel(aSize); diff --git a/sc/source/ui/sidebar/CellLineStyleValueSet.hxx b/sc/source/ui/sidebar/CellLineStyleValueSet.hxx index 7dd340bfeb06..598975aa3afb 100644 --- a/sc/source/ui/sidebar/CellLineStyleValueSet.hxx +++ b/sc/source/ui/sidebar/CellLineStyleValueSet.hxx @@ -25,7 +25,7 @@ namespace sc { namespace sidebar { -class CellLineStyleValueSet : public SvtValueSet +class CellLineStyleValueSet : public ValueSet { private: sal_uInt16 nSelItem; |