vcl/inc/qt5/QtFrame.hxx |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

New commits:
commit 444f2f7d331464d9628b11f409a513b0458c5bae
Author:     Michael Weghorn <m.wegh...@posteo.de>
AuthorDate: Sat Apr 26 23:47:01 2025 +0200
Commit:     Michael Weghorn <m.wegh...@posteo.de>
CommitDate: Sun Apr 27 20:45:11 2025 +0200

    qt: Make some QtFrame DnD methods non-virtual
    
    Change-Id: Ia38c86a15be846c844688e685329f4a32f4a0dbb
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/184679
    Reviewed-by: Michael Weghorn <m.wegh...@posteo.de>
    Tested-by: Jenkins

diff --git a/vcl/inc/qt5/QtFrame.hxx b/vcl/inc/qt5/QtFrame.hxx
index 0b3997f748b2..73ef7c671880 100644
--- a/vcl/inc/qt5/QtFrame.hxx
+++ b/vcl/inc/qt5/QtFrame.hxx
@@ -161,10 +161,10 @@ public:
     virtual void SetIcon(sal_uInt16 nIcon) override;
     virtual void SetMenu(SalMenu* pMenu) override;
 
-    virtual void registerDragSource(QtDragSource* pDragSource);
-    virtual void deregisterDragSource(QtDragSource const* pDragSource);
-    virtual void registerDropTarget(QtDropTarget* pDropTarget);
-    virtual void deregisterDropTarget(QtDropTarget const* pDropTarget);
+    void registerDragSource(QtDragSource* pDragSource);
+    void deregisterDragSource(QtDragSource const* pDragSource);
+    void registerDropTarget(QtDropTarget* pDropTarget);
+    void deregisterDropTarget(QtDropTarget const* pDropTarget);
 
     void handleDragLeave();
     void handleDragMove(QDragMoveEvent* pEvent);

Reply via email to