diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2018-09-20 07:27:20 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2018-09-20 08:37:20 +0200 |
commit | cc2fe8c763b7050f07968f31bcdb7e45b8c7464d (patch) | |
tree | 499b8644a21d45f1317cfb9fc891e2f6d683802b /sd | |
parent | 475ea37809b5bec369d02a5ab500fac46ab40f0a (diff) |
Replace SAL_OVERRIDE with override in internal code
Change-Id: Ifa446647b11fd1f1b0dc6a991b752480545634db
Reviewed-on: https://gerrit.libreoffice.org/60788
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/ui/animations/CategoryListBox.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/ui/animations/CategoryListBox.hxx b/sd/source/ui/animations/CategoryListBox.hxx index 535e27f1651c..bf8ef932f117 100644 --- a/sd/source/ui/animations/CategoryListBox.hxx +++ b/sd/source/ui/animations/CategoryListBox.hxx @@ -31,14 +31,14 @@ public: explicit CategoryListBox( vcl::Window* pParent ); virtual ~CategoryListBox() override; - virtual void MouseButtonUp( const MouseEvent& rMEvt ) SAL_OVERRIDE; + virtual void MouseButtonUp( const MouseEvent& rMEvt ) override; void InsertCategory( const OUString& rStr ); DECL_LINK(implDoubleClickHdl, ListBox&, void); private: - virtual void UserDraw( const UserDrawEvent& rUDEvt ) SAL_OVERRIDE; + virtual void UserDraw( const UserDrawEvent& rUDEvt ) override; }; } |