diff options
author | Caolán McNamara <caolanm@redhat.com> | 2018-10-01 13:59:23 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2018-10-01 20:37:04 +0200 |
commit | 5c64c0e5f264818a648fbe8b49ed784f14cd8e6a (patch) | |
tree | 86fcd1c8bdf23c7bd98a389f0f2821ceaac5d181 /include/svx | |
parent | a734dcdd10c7912ae2fbaef4062756f80a00814d (diff) |
rename PreviewBase back to SvxPreviewBase
Change-Id: I121b169ab1eff090457cfc3a1307e32a4bd3f40a
Reviewed-on: https://gerrit.libreoffice.org/61192
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include/svx')
-rw-r--r-- | include/svx/dlgctrl.hxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/svx/dlgctrl.hxx b/include/svx/dlgctrl.hxx index 8193163b5905..ab2bc673292a 100644 --- a/include/svx/dlgctrl.hxx +++ b/include/svx/dlgctrl.hxx @@ -335,7 +335,7 @@ class SdrObject; class SdrPathObj; class SdrModel; -class SAL_WARN_UNUSED SAL_DLLPUBLIC_RTTI PreviewBase : public weld::CustomWidgetController +class SAL_WARN_UNUSED SAL_DLLPUBLIC_RTTI SvxPreviewBase : public weld::CustomWidgetController { private: std::unique_ptr<SdrModel> mpModel; @@ -353,9 +353,9 @@ protected: void LocalPostPaint(vcl::RenderContext& rRenderContext); public: - PreviewBase(); + SvxPreviewBase(); virtual void SetDrawingArea(weld::DrawingArea*) override; - virtual ~PreviewBase() override; + virtual ~SvxPreviewBase() override; // change support virtual void StyleUpdated() override; @@ -388,7 +388,7 @@ public: |* \************************************************************************/ -class SAL_WARN_UNUSED SVX_DLLPUBLIC SvxXLinePreview : public PreviewBase +class SAL_WARN_UNUSED SVX_DLLPUBLIC SvxXLinePreview : public SvxPreviewBase { private: SdrPathObj* mpLineObjA; @@ -414,7 +414,7 @@ public: virtual void Resize() override; }; -class SAL_WARN_UNUSED SVX_DLLPUBLIC SvxXRectPreview : public PreviewBase +class SAL_WARN_UNUSED SVX_DLLPUBLIC SvxXRectPreview : public SvxPreviewBase { private: SdrObject* mpRectangleObject; @@ -436,7 +436,7 @@ public: |* \************************************************************************/ -class SAL_WARN_UNUSED SVX_DLLPUBLIC SvxXShadowPreview : public PreviewBase +class SAL_WARN_UNUSED SVX_DLLPUBLIC SvxXShadowPreview : public SvxPreviewBase { private: Point maShadowOffset; |