diff options
author | Caolán McNamara <caolanm@redhat.com> | 2019-04-17 08:16:38 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2019-04-17 11:23:49 +0200 |
commit | 6e204253d4cf3be0b9ad136e922ec4fbb2523fe6 (patch) | |
tree | 28895697a5b69314ec68c194a3e4f7a7819c8403 /include/sfx2 | |
parent | d0eee591e01263fc5681e2ce64327f540e49280e (diff) |
use Deactivate
which is closer to how it was before welding
Change-Id: If43e2109d9c511a3e8f191b7704dc42aa06b7353
Reviewed-on: https://gerrit.libreoffice.org/70858
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include/sfx2')
-rw-r--r-- | include/sfx2/basedlgs.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/sfx2/basedlgs.hxx b/include/sfx2/basedlgs.hxx index d04cbb44a998..272ad3fae082 100644 --- a/include/sfx2/basedlgs.hxx +++ b/include/sfx2/basedlgs.hxx @@ -110,7 +110,7 @@ public: // dialog gets focus virtual void Activate() {} // dialog loses focus - virtual void DeActivate() {} + virtual void Deactivate() {} // when the dialog has an associated SfxChildWin, typically for Modeless interaction virtual void ChildWinDispose() {} // called from the associated SfxChildWin dtor @@ -141,7 +141,7 @@ public: virtual void Close() override; virtual void EndDialog() override; virtual void Activate() override; - virtual void DeActivate() override; + virtual void Deactivate() override; virtual void ChildWinDispose() override; SfxBindings& GetBindings() { return *m_pBindings; } }; |