summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2019-05-22 16:37:22 +0100
committerCaolán McNamara <caolanm@redhat.com>2019-05-23 17:34:33 +0200
commit3ca952ddb3ad78fca5d2ca14a3c7cb8417dec4c1 (patch)
treecddd59c9acc95d53555a5d4bdeb5dddfa7b8dd70 /include
parent220b7bd84934389f4f71c3f59daa94ff138fe33d (diff)
rename SvxGraphCtrlView back to GraphCtrlView
Change-Id: I658773f4fc0409a73de56301f5457fa1fb9e4a28 Reviewed-on: https://gerrit.libreoffice.org/72805 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include')
-rw-r--r--include/svx/graphctl.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/svx/graphctl.hxx b/include/svx/graphctl.hxx
index 4b9a30671ac1..41d02cc0482f 100644
--- a/include/svx/graphctl.hxx
+++ b/include/svx/graphctl.hxx
@@ -46,7 +46,7 @@ class SvxGraphCtrlAccessibleContext;
class SVX_DLLPUBLIC SvxGraphCtrl : public weld::CustomWidgetController
{
- friend class SvxGraphCtrlView;
+ friend class GraphCtrlView;
friend class GraphCtrlUserCall;
Graphic aGraphic;
@@ -129,7 +129,7 @@ public:
virtual css::uno::Reference< css::accessibility::XAccessible > CreateAccessible() override;
};
-class SvxGraphCtrlView : public SdrView
+class GraphCtrlView : public SdrView
{
SvxGraphCtrl& rGraphCtrl;
@@ -142,13 +142,13 @@ protected:
}
public:
- SvxGraphCtrlView(SdrModel& rSdrModel, SvxGraphCtrl* pWindow)
+ GraphCtrlView(SdrModel& rSdrModel, SvxGraphCtrl* pWindow)
: SdrView(rSdrModel, &pWindow->GetDrawingArea()->get_ref_device())
, rGraphCtrl(*pWindow)
{
}
- virtual ~SvxGraphCtrlView() override;
+ virtual ~GraphCtrlView() override;
// override these so we can get the occasions SdrPaintView would call Window::Invalidate on its vcl::Window
// if it had one, and route to WidgetController::Invalidate instead