diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-08-13 12:06:33 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-08-13 14:03:51 +0200 |
commit | c6f6349a679c4aeed906115f62edf7a66d200240 (patch) | |
tree | 25ed805c51f1c1b8a2f313946f74a941d5cb9dda /vcl/source/window/toolbox.cxx | |
parent | e9b5b299a5efa03aaa752e30afe960ef25305d62 (diff) |
Revert "clang-tidy bugprone-parent-virtual-call in vcl"
This reverts commit 69972719542cd686687ddd91f2b5284483513608.
There are some odd things gone in with some of these changes that I do understand. Reverting until I have worked it out.
Change-Id: If5316654c16a697a2aff5eccdffaa5b2a6e0052d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/155598
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vcl/source/window/toolbox.cxx')
-rw-r--r-- | vcl/source/window/toolbox.cxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/vcl/source/window/toolbox.cxx b/vcl/source/window/toolbox.cxx index ef12af602504..fc9effe58065 100644 --- a/vcl/source/window/toolbox.cxx +++ b/vcl/source/window/toolbox.cxx @@ -1260,6 +1260,11 @@ void ToolBox::doDeferredInit(WinBits nBits) mbIsDeferredInit = false; } +void ToolBox::queue_resize(StateChangedType eReason) +{ + Window::queue_resize(eReason); +} + ToolBox::ToolBox( vcl::Window* pParent, WinBits nStyle ) : DockingWindow( WindowType::TOOLBOX, "vcl::ToolBox maLayoutIdle" ) { |