From e8991252ec647baf1ddae37331836fbc5ff1003e Mon Sep 17 00:00:00 2001 From: Igor Korot Date: Fri, 5 Jul 2019 21:37:43 -0500 Subject: [PATCH] Improve documentation of wxAuiPaneInfo direction-related methods Mention the corresponding flag in the documentation of all helper functions, not just some of them. Closes #9722. Closes https://github.com/wxWidgets/wxWidgets/pull/1388 --- interface/wx/aui/framemanager.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/interface/wx/aui/framemanager.h b/interface/wx/aui/framemanager.h index e39c50e1ab..e037e0268f 100644 --- a/interface/wx/aui/framemanager.h +++ b/interface/wx/aui/framemanager.h @@ -889,6 +889,7 @@ public: /** Right() sets the pane dock position to the right side of the frame. + This is the same thing as calling Direction(wxAUI_DOCK_RIGHT). */ wxAuiPaneInfo& Right(); @@ -932,6 +933,7 @@ public: /** Top() sets the pane dock position to the top of the frame. + This is the same thing as calling Direction(wxAUI_DOCK_TOP). */ wxAuiPaneInfo& Top();