diff options
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/gallery2/galmisc.cxx | 5 | ||||
-rw-r--r-- | svx/source/inc/fmexch.hxx | 6 | ||||
-rw-r--r-- | svx/source/inc/tabwin.hxx | 4 |
3 files changed, 3 insertions, 12 deletions
diff --git a/svx/source/gallery2/galmisc.cxx b/svx/source/gallery2/galmisc.cxx index 26521a734d97..e8976066af13 100644 --- a/svx/source/gallery2/galmisc.cxx +++ b/svx/source/gallery2/galmisc.cxx @@ -578,11 +578,6 @@ void GalleryTransferable::ObjectReleased() mpURL = nullptr; } -void GalleryTransferable::CopyToClipboard( vcl::Window* pWindow ) -{ - TransferableHelper::CopyToClipboard( pWindow ); -} - void GalleryTransferable::StartDrag( vcl::Window* pWindow, sal_Int8 nDragSourceActions ) { INetURLObject aURL; diff --git a/svx/source/inc/fmexch.hxx b/svx/source/inc/fmexch.hxx index c0cd1dc27416..b750e490114b 100644 --- a/svx/source/inc/fmexch.hxx +++ b/svx/source/inc/fmexch.hxx @@ -81,10 +81,8 @@ namespace svxform virtual bool GetData( const css::datatransfer::DataFlavor& rFlavor, const OUString& rDestDoc ) override; private: - void StartDrag( vcl::Window* pWindow, sal_Int8 nDragSourceActions, sal_Int32 nDragPointer = DND_POINTER_NONE ) - { // don't allow this base class method to be called from outside - TransferableHelper::StartDrag(pWindow, nDragSourceActions, nDragPointer); - } + // don't allow this base class method to be called from outside + using TransferableHelper::StartDrag; }; diff --git a/svx/source/inc/tabwin.hxx b/svx/source/inc/tabwin.hxx index 5a4278e493d3..6440fc4bc755 100644 --- a/svx/source/inc/tabwin.hxx +++ b/svx/source/inc/tabwin.hxx @@ -105,9 +105,7 @@ protected: virtual void _propertyChanged(const css::beans::PropertyChangeEvent& evt) throw( css::uno::RuntimeException, std::exception ) override; protected: - inline SfxBindings& GetBindings() { return SfxControllerItem::GetBindings(); } - inline const SfxBindings& GetBindings() const { return SfxControllerItem::GetBindings(); } - + using SfxControllerItem::GetBindings; using SfxFloatingWindow::StateChanged; }; |