summaryrefslogtreecommitdiff
path: root/include/sfx2/sidebar
diff options
context:
space:
mode:
Diffstat (limited to 'include/sfx2/sidebar')
-rw-r--r--include/sfx2/sidebar/Accessible.hxx2
-rw-r--r--include/sfx2/sidebar/AccessibleTitleBar.hxx2
-rw-r--r--include/sfx2/sidebar/ControllerItem.hxx2
-rw-r--r--include/sfx2/sidebar/Deck.hxx2
-rw-r--r--include/sfx2/sidebar/Panel.hxx2
-rw-r--r--include/sfx2/sidebar/PanelTitleBar.hxx2
-rw-r--r--include/sfx2/sidebar/SidebarController.hxx2
-rw-r--r--include/sfx2/sidebar/SidebarDockingWindow.hxx2
-rw-r--r--include/sfx2/sidebar/SidebarPanelBase.hxx2
-rw-r--r--include/sfx2/sidebar/SidebarToolBox.hxx2
-rw-r--r--include/sfx2/sidebar/TabBar.hxx2
-rw-r--r--include/sfx2/sidebar/Theme.hxx2
-rw-r--r--include/sfx2/sidebar/TitleBar.hxx2
-rw-r--r--include/sfx2/sidebar/UnoDeck.hxx2
-rw-r--r--include/sfx2/sidebar/UnoDecks.hxx2
-rw-r--r--include/sfx2/sidebar/UnoPanel.hxx2
-rw-r--r--include/sfx2/sidebar/UnoPanels.hxx2
17 files changed, 17 insertions, 17 deletions
diff --git a/include/sfx2/sidebar/Accessible.hxx b/include/sfx2/sidebar/Accessible.hxx
index 434e7aad43c6..eaa3f52eeba9 100644
--- a/include/sfx2/sidebar/Accessible.hxx
+++ b/include/sfx2/sidebar/Accessible.hxx
@@ -46,7 +46,7 @@ class Accessible
public:
explicit Accessible (
const css::uno::Reference<css::accessibility::XAccessibleContext>& rxContext);
- virtual ~Accessible();
+ virtual ~Accessible() override;
Accessible(const Accessible&) = delete;
Accessible& operator=( const Accessible& ) = delete;
diff --git a/include/sfx2/sidebar/AccessibleTitleBar.hxx b/include/sfx2/sidebar/AccessibleTitleBar.hxx
index e81a9722b229..3ed43ab248b2 100644
--- a/include/sfx2/sidebar/AccessibleTitleBar.hxx
+++ b/include/sfx2/sidebar/AccessibleTitleBar.hxx
@@ -37,7 +37,7 @@ protected:
private:
explicit AccessibleTitleBar (VCLXWindow* pWindow);
- virtual ~AccessibleTitleBar();
+ virtual ~AccessibleTitleBar() override;
};
} } // end of namespace sfx2::sidebar
diff --git a/include/sfx2/sidebar/ControllerItem.hxx b/include/sfx2/sidebar/ControllerItem.hxx
index ef2bf845c9f6..b984792c87bf 100644
--- a/include/sfx2/sidebar/ControllerItem.hxx
+++ b/include/sfx2/sidebar/ControllerItem.hxx
@@ -81,7 +81,7 @@ public:
/// releases our action listener
virtual void dispose() override;
- virtual ~ControllerItem();
+ virtual ~ControllerItem() override;
/** Returns </TRUE> when the slot/command has not been disabled.
Changes of this state are notified via the
diff --git a/include/sfx2/sidebar/Deck.hxx b/include/sfx2/sidebar/Deck.hxx
index c336d9f808f2..299e25641e30 100644
--- a/include/sfx2/sidebar/Deck.hxx
+++ b/include/sfx2/sidebar/Deck.hxx
@@ -41,7 +41,7 @@ public:
Deck(const DeckDescriptor& rDeckDescriptor,
vcl::Window* pParentWindow,
const std::function<void()>& rCloserAction);
- virtual ~Deck();
+ virtual ~Deck() override;
virtual void dispose() override;
const OUString& GetId() const { return msId; }
diff --git a/include/sfx2/sidebar/Panel.hxx b/include/sfx2/sidebar/Panel.hxx
index 1ea28de425e6..67939992fb4f 100644
--- a/include/sfx2/sidebar/Panel.hxx
+++ b/include/sfx2/sidebar/Panel.hxx
@@ -43,7 +43,7 @@ public:
const std::function<Context()>& rContextAccess,
const css::uno::Reference<css::frame::XFrame>& rxFrame);
- virtual ~Panel();
+ virtual ~Panel() override;
virtual void dispose() override;
PanelTitleBar* GetTitleBar() const;
diff --git a/include/sfx2/sidebar/PanelTitleBar.hxx b/include/sfx2/sidebar/PanelTitleBar.hxx
index 52a04eb938d1..998a12d68ee6 100644
--- a/include/sfx2/sidebar/PanelTitleBar.hxx
+++ b/include/sfx2/sidebar/PanelTitleBar.hxx
@@ -32,7 +32,7 @@ class PanelTitleBar
{
public:
PanelTitleBar(const OUString& rsTitle, vcl::Window* pParentWindow, Panel* pPanel);
- virtual ~PanelTitleBar();
+ virtual ~PanelTitleBar() override;
virtual void dispose() override;
void SetMoreOptionsCommand(const OUString& rsCommandName,
diff --git a/include/sfx2/sidebar/SidebarController.hxx b/include/sfx2/sidebar/SidebarController.hxx
index 8ff117f7d7cf..c32e9c4410a7 100644
--- a/include/sfx2/sidebar/SidebarController.hxx
+++ b/include/sfx2/sidebar/SidebarController.hxx
@@ -72,7 +72,7 @@ public:
SidebarController(
SidebarDockingWindow* pParentWindow,
const css::uno::Reference<css::frame::XFrame>& rxFrame);
- virtual ~SidebarController();
+ virtual ~SidebarController() override;
SidebarController(const SidebarController&) = delete;
SidebarController& operator=( const SidebarController& ) = delete;
diff --git a/include/sfx2/sidebar/SidebarDockingWindow.hxx b/include/sfx2/sidebar/SidebarDockingWindow.hxx
index e725031c8aa5..0a0a55c76c5e 100644
--- a/include/sfx2/sidebar/SidebarDockingWindow.hxx
+++ b/include/sfx2/sidebar/SidebarDockingWindow.hxx
@@ -34,7 +34,7 @@ class SidebarDockingWindow : public SfxDockingWindow
public:
SidebarDockingWindow(SfxBindings* pBindings, SidebarChildWindow& rChildWindow,
vcl::Window* pParent, WinBits nBits);
- virtual ~SidebarDockingWindow();
+ virtual ~SidebarDockingWindow() override;
virtual void dispose() override;
using SfxDockingWindow::Close;
diff --git a/include/sfx2/sidebar/SidebarPanelBase.hxx b/include/sfx2/sidebar/SidebarPanelBase.hxx
index 606d65c335ef..e0943b4bccf9 100644
--- a/include/sfx2/sidebar/SidebarPanelBase.hxx
+++ b/include/sfx2/sidebar/SidebarPanelBase.hxx
@@ -102,7 +102,7 @@ protected:
SidebarPanelBase(const OUString& rsResourceURL, const css::uno::Reference<css::frame::XFrame>& rxFrame,
vcl::Window* pWindow, const css::ui::LayoutSize& rLayoutSize);
- virtual ~SidebarPanelBase();
+ virtual ~SidebarPanelBase() override;
SidebarPanelBase(const SidebarPanelBase&) = delete;
SidebarPanelBase& operator=( const SidebarPanelBase& ) = delete;
diff --git a/include/sfx2/sidebar/SidebarToolBox.hxx b/include/sfx2/sidebar/SidebarToolBox.hxx
index 3eb7eb49efe2..893e8cecf16f 100644
--- a/include/sfx2/sidebar/SidebarToolBox.hxx
+++ b/include/sfx2/sidebar/SidebarToolBox.hxx
@@ -40,7 +40,7 @@ class SFX2_DLLPUBLIC SidebarToolBox : public ToolBox
{
public:
SidebarToolBox(vcl::Window* pParentWindow);
- virtual ~SidebarToolBox();
+ virtual ~SidebarToolBox() override;
virtual void dispose() override;
virtual ToolBoxButtonSize GetIconSize() const;
diff --git a/include/sfx2/sidebar/TabBar.hxx b/include/sfx2/sidebar/TabBar.hxx
index a805a94cd42a..e8982460c75a 100644
--- a/include/sfx2/sidebar/TabBar.hxx
+++ b/include/sfx2/sidebar/TabBar.hxx
@@ -72,7 +72,7 @@ public:
const PopupMenuProvider& rPopupMenuProvider,
SidebarController* rParentSidebarController);
- virtual ~TabBar();
+ virtual ~TabBar() override;
virtual void dispose() override;
virtual void Paint (vcl::RenderContext& /*rRenderContext*/, const Rectangle& rUpdateArea) override;
diff --git a/include/sfx2/sidebar/Theme.hxx b/include/sfx2/sidebar/Theme.hxx
index 2e12de396a92..84552e54bd44 100644
--- a/include/sfx2/sidebar/Theme.hxx
+++ b/include/sfx2/sidebar/Theme.hxx
@@ -148,7 +148,7 @@ public:
void InitializeTheme();
Theme();
- virtual ~Theme();
+ virtual ~Theme() override;
Theme(const Theme&) = delete;
Theme& operator=( const Theme& ) = delete;
diff --git a/include/sfx2/sidebar/TitleBar.hxx b/include/sfx2/sidebar/TitleBar.hxx
index 868e1327c0f1..612172e8e881 100644
--- a/include/sfx2/sidebar/TitleBar.hxx
+++ b/include/sfx2/sidebar/TitleBar.hxx
@@ -32,7 +32,7 @@ public:
TitleBar (const OUString& rsTitle,
vcl::Window* pParentWindow,
const sidebar::Paint& rInitialBackgroundPaint);
- virtual ~TitleBar();
+ virtual ~TitleBar() override;
virtual void dispose() override;
void SetTitle (const OUString& rsTitle);
diff --git a/include/sfx2/sidebar/UnoDeck.hxx b/include/sfx2/sidebar/UnoDeck.hxx
index 74d4d75e665e..9de2feb69c1c 100644
--- a/include/sfx2/sidebar/UnoDeck.hxx
+++ b/include/sfx2/sidebar/UnoDeck.hxx
@@ -30,7 +30,7 @@ class SfxUnoDeck : public ::cppu::WeakImplHelper1< css::ui::XDeck >
public:
SfxUnoDeck(const css::uno::Reference<css::frame::XFrame>& , const OUString&);
- virtual ~SfxUnoDeck() {};
+ virtual ~SfxUnoDeck() override {};
virtual OUString SAL_CALL getId()
throw(css::uno::RuntimeException, std::exception) override;
diff --git a/include/sfx2/sidebar/UnoDecks.hxx b/include/sfx2/sidebar/UnoDecks.hxx
index b073033064c7..88571996ace4 100644
--- a/include/sfx2/sidebar/UnoDecks.hxx
+++ b/include/sfx2/sidebar/UnoDecks.hxx
@@ -32,7 +32,7 @@ class SfxUnoDecks : public ::cppu::WeakImplHelper1< css::ui::XDecks >
public:
SfxUnoDecks(const css::uno::Reference<css::frame::XFrame>&);
- virtual ~SfxUnoDecks() {};
+ virtual ~SfxUnoDecks() override {};
// XNameAccess
diff --git a/include/sfx2/sidebar/UnoPanel.hxx b/include/sfx2/sidebar/UnoPanel.hxx
index 227358e61ba3..88f47e9ecf45 100644
--- a/include/sfx2/sidebar/UnoPanel.hxx
+++ b/include/sfx2/sidebar/UnoPanel.hxx
@@ -33,7 +33,7 @@ class SfxUnoPanel : public ::cppu::WeakImplHelper1< css::ui::XPanel >
public:
SfxUnoPanel(const css::uno::Reference<css::frame::XFrame>& , const OUString&, const OUString&);
- virtual ~SfxUnoPanel() {};
+ virtual ~SfxUnoPanel() override {};
virtual OUString SAL_CALL getId()
throw(css::uno::RuntimeException, std::exception) override;
diff --git a/include/sfx2/sidebar/UnoPanels.hxx b/include/sfx2/sidebar/UnoPanels.hxx
index d23d3da14011..f34aefca4f31 100644
--- a/include/sfx2/sidebar/UnoPanels.hxx
+++ b/include/sfx2/sidebar/UnoPanels.hxx
@@ -30,7 +30,7 @@ class SfxUnoPanels : public ::cppu::WeakImplHelper1< css::ui::XPanels >
public:
SfxUnoPanels(const css::uno::Reference<css::frame::XFrame>& , const OUString&);
- virtual ~SfxUnoPanels() {};
+ virtual ~SfxUnoPanels() override {};
// XPanels
virtual OUString SAL_CALL getDeckId()