summaryrefslogtreecommitdiff
path: root/sc/source/ui/sidebar
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/ui/sidebar')
-rw-r--r--sc/source/ui/sidebar/CellLineStyleControl.cxx2
-rw-r--r--sc/source/ui/sidebar/CellLineStyleControl.hxx2
-rw-r--r--sc/source/ui/sidebar/CellLineStyleValueSet.cxx4
-rw-r--r--sc/source/ui/sidebar/CellLineStyleValueSet.hxx2
4 files changed, 5 insertions, 5 deletions
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;