summaryrefslogtreecommitdiff
path: root/sd/source/ui/animations
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/ui/animations')
-rw-r--r--sd/source/ui/animations/CategoryListBox.hxx2
-rw-r--r--sd/source/ui/animations/CustomAnimationDialog.cxx24
-rw-r--r--sd/source/ui/animations/CustomAnimationDialog.hxx4
-rw-r--r--sd/source/ui/animations/CustomAnimationList.cxx6
-rw-r--r--sd/source/ui/animations/CustomAnimationList.hxx2
-rw-r--r--sd/source/ui/animations/CustomAnimationPane.hxx2
-rwxr-xr-xsd/source/ui/animations/SlideTransitionPane.cxx2
-rw-r--r--sd/source/ui/animations/motionpathtag.cxx2
-rw-r--r--sd/source/ui/animations/motionpathtag.hxx2
9 files changed, 23 insertions, 23 deletions
diff --git a/sd/source/ui/animations/CategoryListBox.hxx b/sd/source/ui/animations/CategoryListBox.hxx
index e0bcad3ae541..25edc35e4b8a 100644
--- a/sd/source/ui/animations/CategoryListBox.hxx
+++ b/sd/source/ui/animations/CategoryListBox.hxx
@@ -29,7 +29,7 @@ class CategoryListBox : public ListBox
{
public:
explicit CategoryListBox( vcl::Window* pParent );
- virtual ~CategoryListBox();
+ virtual ~CategoryListBox() override;
virtual void MouseButtonUp( const MouseEvent& rMEvt ) SAL_OVERRIDE;
diff --git a/sd/source/ui/animations/CustomAnimationDialog.cxx b/sd/source/ui/animations/CustomAnimationDialog.cxx
index 18c409531440..d912f6d5ec05 100644
--- a/sd/source/ui/animations/CustomAnimationDialog.cxx
+++ b/sd/source/ui/animations/CustomAnimationDialog.cxx
@@ -101,7 +101,7 @@ class PresetPropertyBox : public PropertySubControl
{
public:
PresetPropertyBox( sal_Int32 nControlType, vcl::Window* pParent, const Any& rValue, const OUString& aPresetId, const Link<LinkParamNone*,void>& rModifyHdl );
- virtual ~PresetPropertyBox();
+ virtual ~PresetPropertyBox() override;
virtual Any getValue() override;
virtual void setValue( const Any& rValue, const OUString& rPresetId ) override;
@@ -184,7 +184,7 @@ class ColorPropertyBox : public PropertySubControl
{
public:
ColorPropertyBox( sal_Int32 nControlType, vcl::Window* pParent, const Any& rValue, const Link<LinkParamNone*,void>& rModifyHdl );
- virtual ~ColorPropertyBox();
+ virtual ~ColorPropertyBox() override;
virtual Any getValue() override;
virtual void setValue( const Any& rValue, const OUString& rPresetId ) override;
@@ -263,7 +263,7 @@ class FontPropertyBox : public PropertySubControl
{
public:
FontPropertyBox( sal_Int32 nControlType, vcl::Window* pParent, const Any& rValue, const Link<LinkParamNone*,void>& rModifyHdl );
- virtual ~FontPropertyBox();
+ virtual ~FontPropertyBox() override;
virtual Any getValue() override;
virtual void setValue( const Any& rValue, const OUString& rPresetId ) override;
@@ -343,7 +343,7 @@ class DropdownMenuBox : public Edit
{
public:
DropdownMenuBox( vcl::Window* pParent, Edit* pSubControl, PopupMenu* pMenu );
- virtual ~DropdownMenuBox();
+ virtual ~DropdownMenuBox() override;
virtual void dispose() override;
void Resize() override;
@@ -424,7 +424,7 @@ class CharHeightPropertyBox : public PropertySubControl
{
public:
CharHeightPropertyBox( sal_Int32 nControlType, vcl::Window* pParent, const Any& rValue, const Link<LinkParamNone*,void>& rModifyHdl );
- virtual ~CharHeightPropertyBox();
+ virtual ~CharHeightPropertyBox() override;
virtual Any getValue() override;
virtual void setValue( const Any& rValue, const OUString& ) override;
@@ -507,7 +507,7 @@ class TransparencyPropertyBox : public PropertySubControl
{
public:
TransparencyPropertyBox( sal_Int32 nControlType, vcl::Window* pParent, const Any& rValue, const Link<LinkParamNone*,void>& rModifyHdl );
- virtual ~TransparencyPropertyBox();
+ virtual ~TransparencyPropertyBox() override;
virtual Any getValue() override;
virtual void setValue( const Any& rValue, const OUString& rPresetId ) override;
@@ -607,7 +607,7 @@ class RotationPropertyBox : public PropertySubControl
{
public:
RotationPropertyBox( sal_Int32 nControlType, vcl::Window* pParent, const Any& rValue, const Link<LinkParamNone*,void>& rModifyHdl );
- virtual ~RotationPropertyBox();
+ virtual ~RotationPropertyBox() override;
virtual Any getValue() override;
virtual void setValue( const Any& rValue, const OUString& ) override;
@@ -728,7 +728,7 @@ class ScalePropertyBox : public PropertySubControl
{
public:
ScalePropertyBox( sal_Int32 nControlType, vcl::Window* pParent, const Any& rValue, const Link<LinkParamNone*,void>& rModifyHdl );
- virtual ~ScalePropertyBox();
+ virtual ~ScalePropertyBox() override;
virtual Any getValue() override;
virtual void setValue( const Any& rValue, const OUString& ) override;
@@ -887,7 +887,7 @@ class FontStylePropertyBox : public PropertySubControl
{
public:
FontStylePropertyBox( sal_Int32 nControlType, vcl::Window* pParent, const Any& rValue, const Link<LinkParamNone*,void>& rModifyHdl );
- virtual ~FontStylePropertyBox();
+ virtual ~FontStylePropertyBox() override;
virtual Any getValue() override;
virtual void setValue( const Any& rValue, const OUString& ) override;
@@ -1006,7 +1006,7 @@ class CustomAnimationEffectTabPage : public TabPage
{
public:
CustomAnimationEffectTabPage( vcl::Window* pParent, const STLPropertySet* pSet );
- virtual ~CustomAnimationEffectTabPage();
+ virtual ~CustomAnimationEffectTabPage() override;
virtual void dispose() override;
void update( STLPropertySet* pSet );
@@ -1610,7 +1610,7 @@ class CustomAnimationDurationTabPage : public TabPage
{
public:
CustomAnimationDurationTabPage( vcl::Window* pParent, const STLPropertySet* pSet );
- virtual ~CustomAnimationDurationTabPage();
+ virtual ~CustomAnimationDurationTabPage() override;
virtual void dispose() override;
void update( STLPropertySet* pSet );
@@ -2006,7 +2006,7 @@ class CustomAnimationTextAnimTabPage : public TabPage
{
public:
CustomAnimationTextAnimTabPage( vcl::Window* pParent, const STLPropertySet* pSet );
- virtual ~CustomAnimationTextAnimTabPage();
+ virtual ~CustomAnimationTextAnimTabPage() override;
virtual void dispose() override;
void update( STLPropertySet* pSet );
diff --git a/sd/source/ui/animations/CustomAnimationDialog.hxx b/sd/source/ui/animations/CustomAnimationDialog.hxx
index ccdf464fba93..6ccbdddc1469 100644
--- a/sd/source/ui/animations/CustomAnimationDialog.hxx
+++ b/sd/source/ui/animations/CustomAnimationDialog.hxx
@@ -122,7 +122,7 @@ class PropertyControl : public ListBox
{
public:
explicit PropertyControl( vcl::Window* pParent );
- virtual ~PropertyControl();
+ virtual ~PropertyControl() override;
virtual void dispose() override;
void setSubControl( PropertySubControl* pSubControl );
@@ -143,7 +143,7 @@ class CustomAnimationDialog : public TabDialog
{
public:
CustomAnimationDialog(vcl::Window* pParent, STLPropertySet* pSet, const OString& Page = OString());
- virtual ~CustomAnimationDialog();
+ virtual ~CustomAnimationDialog() override;
virtual void dispose() override;
STLPropertySet* getResultSet();
diff --git a/sd/source/ui/animations/CustomAnimationList.cxx b/sd/source/ui/animations/CustomAnimationList.cxx
index d14f670702d2..b15f0b9bbc16 100644
--- a/sd/source/ui/animations/CustomAnimationList.cxx
+++ b/sd/source/ui/animations/CustomAnimationList.cxx
@@ -203,7 +203,7 @@ class CustomAnimationListEntryItem : public SvLBoxString
public:
CustomAnimationListEntryItem(const OUString& aDescription,
const CustomAnimationEffectPtr& pEffect, CustomAnimationList* pParent);
- virtual ~CustomAnimationListEntryItem();
+ virtual ~CustomAnimationListEntryItem() override;
void InitViewData(SvTreeListBox*,SvTreeListEntry*,SvViewDataItem* = nullptr) override;
SvLBoxItem* Create() const override;
void Clone(SvLBoxItem* pSource) override;
@@ -350,7 +350,7 @@ class CustomAnimationListEntry : public SvTreeListEntry
public:
CustomAnimationListEntry();
explicit CustomAnimationListEntry(const CustomAnimationEffectPtr& pEffect);
- virtual ~CustomAnimationListEntry();
+ virtual ~CustomAnimationListEntry() override;
const CustomAnimationEffectPtr& getEffect() const { return mpEffect; }
@@ -375,7 +375,7 @@ class CustomAnimationTriggerEntryItem : public SvLBoxString
{
public:
explicit CustomAnimationTriggerEntryItem( const OUString& aDescription );
- virtual ~CustomAnimationTriggerEntryItem();
+ virtual ~CustomAnimationTriggerEntryItem() override;
void InitViewData( SvTreeListBox*,SvTreeListEntry*,SvViewDataItem* = nullptr ) override;
SvLBoxItem* Create() const override;
void Clone( SvLBoxItem* pSource ) override;
diff --git a/sd/source/ui/animations/CustomAnimationList.hxx b/sd/source/ui/animations/CustomAnimationList.hxx
index f2bce08e8439..0a0b906df09e 100644
--- a/sd/source/ui/animations/CustomAnimationList.hxx
+++ b/sd/source/ui/animations/CustomAnimationList.hxx
@@ -51,7 +51,7 @@ class CustomAnimationList : public SvTreeListBox, public ISequenceListener
public:
explicit CustomAnimationList( vcl::Window* pParent );
- virtual ~CustomAnimationList();
+ virtual ~CustomAnimationList() override;
virtual void dispose() override;
// methods
diff --git a/sd/source/ui/animations/CustomAnimationPane.hxx b/sd/source/ui/animations/CustomAnimationPane.hxx
index 186af1c196b8..6fb2e3a2aacd 100644
--- a/sd/source/ui/animations/CustomAnimationPane.hxx
+++ b/sd/source/ui/animations/CustomAnimationPane.hxx
@@ -67,7 +67,7 @@ class CustomAnimationPane : public PanelLayout, public ICustomAnimationListContr
public:
CustomAnimationPane( vcl::Window* pParent, ViewShellBase& rBase, const css::uno::Reference<css::frame::XFrame>& rxFrame );
CustomAnimationPane( vcl::Window* pParent, ViewShellBase& rBase, const css::uno::Reference<css::frame::XFrame>& rxFrame, bool bHorizontal );
- virtual ~CustomAnimationPane();
+ virtual ~CustomAnimationPane() override;
virtual void dispose() override;
// callbacks
diff --git a/sd/source/ui/animations/SlideTransitionPane.cxx b/sd/source/ui/animations/SlideTransitionPane.cxx
index a59ec42f25cc..3d42e552a2d2 100755
--- a/sd/source/ui/animations/SlideTransitionPane.cxx
+++ b/sd/source/ui/animations/SlideTransitionPane.cxx
@@ -383,7 +383,7 @@ public:
set_vexpand( true );
SetExtraSpacing( 2 );
}
- virtual ~TransitionPane() { disposeOnce(); }
+ virtual ~TransitionPane() override { disposeOnce(); }
virtual Size GetOptimalSize() const override
{
diff --git a/sd/source/ui/animations/motionpathtag.cxx b/sd/source/ui/animations/motionpathtag.cxx
index 6e4583614896..da51c1e0bbe8 100644
--- a/sd/source/ui/animations/motionpathtag.cxx
+++ b/sd/source/ui/animations/motionpathtag.cxx
@@ -245,7 +245,7 @@ class SdPathHdl : public SmartHdl
{
public:
SdPathHdl( const SmartTagReference& xTag, SdrPathObj* mpPathObj );
- virtual ~SdPathHdl();
+ virtual ~SdPathHdl() override;
virtual void CreateB2dIAObject() override;
virtual bool IsFocusHdl() const override;
virtual bool isMarkable() const override;
diff --git a/sd/source/ui/animations/motionpathtag.hxx b/sd/source/ui/animations/motionpathtag.hxx
index 0803417434ac..bfd035d034c3 100644
--- a/sd/source/ui/animations/motionpathtag.hxx
+++ b/sd/source/ui/animations/motionpathtag.hxx
@@ -39,7 +39,7 @@ class MotionPathTag : public SmartTag, public IPolyPolygonEditorController, publ
{
public:
MotionPathTag( CustomAnimationPane& rPane, ::sd::View& rView, const CustomAnimationEffectPtr& pEffect );
- virtual ~MotionPathTag();
+ virtual ~MotionPathTag() override;
SdrPathObj* getPathObj() const { return mpPathObj; }