[Libreoffice-commits] core.git: include/vcl

Caolán McNamara (via logerrit) logerrit at kemper.freedesktop.org
Fri Jul 9 07:57:27 UTC 2021


 include/vcl/window.hxx |   16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

New commits:
commit 9f918b1dbe687e330e424413f09a0a41bac3af32
Author:     Caolán McNamara <caolanm at redhat.com>
AuthorDate: Thu Jul 8 20:57:19 2021 +0100
Commit:     Caolán McNamara <caolanm at redhat.com>
CommitDate: Fri Jul 9 09:56:51 2021 +0200

    can avoid exporting the Compat methods
    
    Change-Id: I850139c7858d599eb60d16401fc49fba5b72f568
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/118657
    Tested-by: Jenkins
    Reviewed-by: Caolán McNamara <caolanm at redhat.com>

diff --git a/include/vcl/window.hxx b/include/vcl/window.hxx
index 0deb36dad6fd..a0bc04cd4523 100644
--- a/include/vcl/window.hxx
+++ b/include/vcl/window.hxx
@@ -563,6 +563,14 @@ public:
     SAL_DLLPRIVATE void                 ImplCallResize();
     SAL_DLLPRIVATE void                 ImplCallMove();
 
+    // These methods call the relevant virtual method when not in/post dispose
+    SAL_DLLPRIVATE void                 CompatGetFocus();
+    SAL_DLLPRIVATE void                 CompatLoseFocus();
+    SAL_DLLPRIVATE void                 CompatStateChanged( StateChangedType nStateChange );
+    SAL_DLLPRIVATE void                 CompatDataChanged( const DataChangedEvent& rDCEvt );
+    SAL_DLLPRIVATE bool                 CompatPreNotify( NotifyEvent& rNEvt );
+    SAL_DLLPRIVATE bool                 CompatNotify( NotifyEvent& rNEvt );
+
                    void                 IncModalCount();
                    void                 DecModalCount();
 
@@ -765,14 +773,6 @@ public:
     virtual bool                        PreNotify( NotifyEvent& rNEvt );
     virtual bool                        EventNotify( NotifyEvent& rNEvt );
 
-    // These methods call the relevant virtual method when not in/post dispose
-    void                                CompatGetFocus();
-    void                                CompatLoseFocus();
-    void                                CompatStateChanged( StateChangedType nStateChange );
-    void                                CompatDataChanged( const DataChangedEvent& rDCEvt );
-    bool                                CompatPreNotify( NotifyEvent& rNEvt );
-    bool                                CompatNotify( NotifyEvent& rNEvt );
-
     void                                AddEventListener( const Link<VclWindowEvent&,void>& rEventListener );
     void                                RemoveEventListener( const Link<VclWindowEvent&,void>& rEventListener );
     void                                AddChildEventListener( const Link<VclWindowEvent&,void>& rEventListener );


More information about the Libreoffice-commits mailing list