From d26d1da82f0625ce1e5a99cc0081b1fcf422b315 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Sat, 25 Apr 2020 20:17:05 +0100 Subject: rename SvtValueSet back to ValueSet MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I51ab96ffef7acc0d416d13ac8e380e49381f4d1d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/92902 Tested-by: Jenkins Reviewed-by: Caolán McNamara --- sw/source/uibase/inc/column.hxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'sw/source/uibase/inc') diff --git a/sw/source/uibase/inc/column.hxx b/sw/source/uibase/inc/column.hxx index c2f05d96fec6..1b799c1c2c90 100644 --- a/sw/source/uibase/inc/column.hxx +++ b/sw/source/uibase/inc/column.hxx @@ -65,16 +65,16 @@ public: virtual ~SwColumnDlg() override; }; -class ColumnValueSet : public SvtValueSet +class ColumnValueSet : public ValueSet { public: ColumnValueSet() - : SvtValueSet(nullptr) + : ValueSet(nullptr) { } virtual void SetDrawingArea(weld::DrawingArea* pDrawingArea) override { - SvtValueSet::SetDrawingArea(pDrawingArea); + ValueSet::SetDrawingArea(pDrawingArea); SetStyle(WB_TABSTOP | WB_ITEMBORDER | WB_DOUBLEBORDER); } virtual void UserDraw(const UserDrawEvent& rUDEvt) override; @@ -142,7 +142,7 @@ class SwColumnPage : public SfxTabPage DECL_LINK(GapModify, weld::MetricSpinButton&, void); DECL_LINK(EdModify, weld::MetricSpinButton&, void); DECL_LINK(AutoWidthHdl, weld::ToggleButton&, void ); - DECL_LINK(SetDefaultsHdl, SvtValueSet *, void); + DECL_LINK(SetDefaultsHdl, ValueSet *, void); DECL_LINK(Up, weld::Button&, void); DECL_LINK(Down, weld::Button&, void); -- cgit