From f3c5d5138024acfb0991fa1794da70a19240c820 Mon Sep 17 00:00:00 2001 From: Uwe Kindler Date: Wed, 26 Feb 2020 13:25:17 +0100 Subject: [PATCH] Improved documentation for setting dock manager flags --- src/DockManager.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/DockManager.h b/src/DockManager.h index 27b1caa..dff4f0b 100644 --- a/src/DockManager.h +++ b/src/DockManager.h @@ -142,6 +142,7 @@ public: /** * These global configuration flags configure some global dock manager * settings. + * Set the dock manager flags, before you create the dock manager instance. */ enum eConfigFlag { @@ -209,12 +210,14 @@ public: /** * Sets the global configuration flags for the whole docking system. - * Call this function before you create your first dock widget. + * Call this function before you create the dock manager and before + * your create the first dock widget. */ static void setConfigFlags(const ConfigFlags Flags); /** - * Set a certain config flag + * Set a certain config flag. + * \see setConfigFlags() */ static void setConfigFlag(eConfigFlag Flag, bool On = true);