diff options
author | Caolán McNamara <caolanm@redhat.com> | 2021-07-08 20:57:19 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2021-07-09 09:56:51 +0200 |
commit | 9f918b1dbe687e330e424413f09a0a41bac3af32 (patch) | |
tree | 77f4942034522170a82fb52e0d4ac62f48005673 | |
parent | 9d27a44e8b79373573ea038d8a44874785036fd3 (diff) |
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@redhat.com>
-rw-r--r-- | include/vcl/window.hxx | 16 |
1 files changed, 8 insertions, 8 deletions
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 ); |