summaryrefslogtreecommitdiff
path: root/svx/source/gallery2/galctrl.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svx/source/gallery2/galctrl.cxx')
-rw-r--r--svx/source/gallery2/galctrl.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/svx/source/gallery2/galctrl.cxx b/svx/source/gallery2/galctrl.cxx
index c216d611d7d8..6604eee1e662 100644
--- a/svx/source/gallery2/galctrl.cxx
+++ b/svx/source/gallery2/galctrl.cxx
@@ -283,7 +283,7 @@ void GalleryIconView::drawTransparenceBackground(vcl::RenderContext& rOut, const
}
GalleryIconView::GalleryIconView(GalleryBrowser2* pParent, std::unique_ptr<weld::ScrolledWindow> xScrolledWindow)
- : SvtValueSet(std::move(xScrolledWindow))
+ : ValueSet(std::move(xScrolledWindow))
, mpParent(pParent)
, mpTheme(nullptr)
{
@@ -295,7 +295,7 @@ GalleryIconView::~GalleryIconView()
void GalleryIconView::SetDrawingArea(weld::DrawingArea* pDrawingArea)
{
- SvtValueSet::SetDrawingArea(pDrawingArea);
+ ValueSet::SetDrawingArea(pDrawingArea);
SetStyle(GetStyle() | WB_TABSTOP | WB_3DLOOK | WB_BORDER | WB_ITEMBORDER | WB_DOUBLEBORDER | WB_VSCROLL | WB_FLATVALUESET);
EnableFullItemMode( false );
@@ -371,7 +371,7 @@ void GalleryIconView::UserDraw(const UserDrawEvent& rUDEvt)
bool GalleryIconView::MouseButtonDown(const MouseEvent& rMEvt)
{
- bool bRet = SvtValueSet::MouseButtonDown(rMEvt);
+ bool bRet = ValueSet::MouseButtonDown(rMEvt);
if (rMEvt.GetClicks() == 2)
mpParent->TogglePreview();
@@ -381,7 +381,7 @@ bool GalleryIconView::MouseButtonDown(const MouseEvent& rMEvt)
bool GalleryIconView::Command(const CommandEvent& rCEvt)
{
- bool bRet = SvtValueSet::Command(rCEvt);
+ bool bRet = ValueSet::Command(rCEvt);
if (rCEvt.GetCommand() == CommandEventId::ContextMenu)
{
@@ -394,7 +394,7 @@ bool GalleryIconView::Command(const CommandEvent& rCEvt)
bool GalleryIconView::KeyInput(const KeyEvent& rKEvt)
{
if (!mpTheme || !mpParent->KeyInput(rKEvt))
- return SvtValueSet::KeyInput(rKEvt);
+ return ValueSet::KeyInput(rKEvt);
return true;
}