summaryrefslogtreecommitdiff
path: root/chart2/source/controller/sidebar
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2020-04-25 20:17:05 +0100
committerCaolán McNamara <caolanm@redhat.com>2020-04-25 22:43:39 +0200
commitd26d1da82f0625ce1e5a99cc0081b1fcf422b315 (patch)
tree5f4fa18baa60dc09f24b4681dc04b3a76599244e /chart2/source/controller/sidebar
parent33966ab25d21594a3a4f40ce30ece73fa4f45a27 (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 'chart2/source/controller/sidebar')
-rw-r--r--chart2/source/controller/sidebar/ChartTypePanel.cxx4
-rw-r--r--chart2/source/controller/sidebar/ChartTypePanel.hxx4
2 files changed, 4 insertions, 4 deletions
diff --git a/chart2/source/controller/sidebar/ChartTypePanel.cxx b/chart2/source/controller/sidebar/ChartTypePanel.cxx
index d730a880b58a..ceea3b2186b6 100644
--- a/chart2/source/controller/sidebar/ChartTypePanel.cxx
+++ b/chart2/source/controller/sidebar/ChartTypePanel.cxx
@@ -60,7 +60,7 @@ ChartTypePanel::ChartTypePanel(vcl::Window* pParent,
, m_nChangingCalls(0)
, m_aTimerTriggeredControllerLock(m_xChartModel)
, m_xMainTypeList(m_xBuilder->weld_combo_box("cmb_chartType"))
- , m_xSubTypeList(new SvtValueSet(m_xBuilder->weld_scrolled_window("subtypewin")))
+ , m_xSubTypeList(new ValueSet(m_xBuilder->weld_scrolled_window("subtypewin")))
, m_xSubTypeListWin(new weld::CustomWeld(*m_xBuilder, "subtype", *m_xSubTypeList))
{
Size aSize(m_xSubTypeList->GetDrawingArea()->get_ref_device().LogicToPixel(
@@ -151,7 +151,7 @@ void ChartTypePanel::dispose()
IMPL_LINK_NOARG(ChartTypePanel, SelectMainTypeHdl, weld::ComboBox&, void) { selectMainType(); }
-IMPL_LINK_NOARG(ChartTypePanel, SelectSubTypeHdl, SvtValueSet*, void)
+IMPL_LINK_NOARG(ChartTypePanel, SelectSubTypeHdl, ValueSet*, void)
{
if (m_pCurrentMainType)
{
diff --git a/chart2/source/controller/sidebar/ChartTypePanel.hxx b/chart2/source/controller/sidebar/ChartTypePanel.hxx
index 087f6ba79525..3c9cce1178e8 100644
--- a/chart2/source/controller/sidebar/ChartTypePanel.hxx
+++ b/chart2/source/controller/sidebar/ChartTypePanel.hxx
@@ -99,7 +99,7 @@ private:
void selectMainType();
DECL_LINK(SelectMainTypeHdl, weld::ComboBox&, void);
- DECL_LINK(SelectSubTypeHdl, SvtValueSet*, void);
+ DECL_LINK(SelectSubTypeHdl, ValueSet*, void);
vcl::EnumContext maContext;
@@ -126,7 +126,7 @@ private:
TimerTriggeredControllerLock m_aTimerTriggeredControllerLock;
std::unique_ptr<weld::ComboBox> m_xMainTypeList;
- std::unique_ptr<SvtValueSet> m_xSubTypeList;
+ std::unique_ptr<ValueSet> m_xSubTypeList;
std::unique_ptr<weld::CustomWeld> m_xSubTypeListWin;
};
}