From b4e1da1d6adf5d93a552ed3469e15b2a0236241d Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 8 Dec 2020 18:47:38 +0100 Subject: [PATCH] Add wxWindow::GetAutoLayout() documentation This function is not really useful for the application developers, but should still be documented. Closes #18917. --- interface/wx/window.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/interface/wx/window.h b/interface/wx/window.h index 9d1d235c9f..1f2bcb4e92 100644 --- a/interface/wx/window.h +++ b/interface/wx/window.h @@ -3553,6 +3553,13 @@ public: */ void SetAutoLayout(bool autoLayout); + /** + Returns true if Layout() is called automatically when the window is + resized. + + This function is mostly useful for wxWidgets itself and is rarely + needed in the application code. + */ bool GetAutoLayout() const; //@}