diff --git a/src/DockWidgetBase.h b/src/DockWidgetBase.h index 734f23b8..73f332d9 100644 --- a/src/DockWidgetBase.h +++ b/src/DockWidgetBase.h @@ -75,7 +75,7 @@ public: /** * @brief constructs a new DockWidget - * @param name the name of the dockwidget, should be unique. Use title for user visible text. + * @param uniqueName the name of the dockwidget, should be unique. Use title for user visible text. * @param options optional options controlling behaviour * * There's no parent argument. The DockWidget is either parented to FloatingWindow or MainWindow @@ -87,7 +87,7 @@ public: ~DockWidgetBase() override; /** - * @param Constructs a dock widget from its serialized form. + * @brief Constructs a dock widget from its serialized form. * @internal */ static DockWidgetBase *deserialize(const LayoutSaver::DockWidget::Ptr &); @@ -109,7 +109,7 @@ public: /** * @brief docks @p other widget into the window that contains this one. - * Equivalent to @ref MainWindow::addDockWidge() with the difference + * Equivalent to @ref MainWindow::addDockWidget() with the difference * that it also supports the case where the top-level window is a * @ref FloatingWindow instead of @ref MainWindow. * diff --git a/src/FrameworkWidgetFactory.h b/src/FrameworkWidgetFactory.h index de7256a4..5a0c38d1 100644 --- a/src/FrameworkWidgetFactory.h +++ b/src/FrameworkWidgetFactory.h @@ -69,7 +69,7 @@ public: /// widget that holds the titlebar and tab-widget which holds the /// DockWidgets. ///@param parent just forward to Frame's constructor - ///@param options just forward to Frame's constructor + ///@param FrameOptions just forward to Frame's constructor virtual Frame* createFrame(QWidgetOrQuick *parent = nullptr, FrameOptions = FrameOption_None) const = 0; ///@brief Called internally by the framework to create a TitleBar diff --git a/src/LayoutSaver.h b/src/LayoutSaver.h index 1694006e..95e9f02b 100644 --- a/src/LayoutSaver.h +++ b/src/LayoutSaver.h @@ -78,7 +78,7 @@ public: /** * @brief returns a list of dock widgets which were restored since the last - * @ref restoreLayout() or @ref restoreFromDisk() + * @ref restoreLayout() or @ref restoreFromFile() * * Useful since some dock widgets can be new, and hence not be included in the last saved layout. */ diff --git a/src/MainWindowBase.h b/src/MainWindowBase.h index 297133d3..9c4d13e9 100644 --- a/src/MainWindowBase.h +++ b/src/MainWindowBase.h @@ -59,7 +59,7 @@ public: /** * @brief Docks a DockWidget into the central frame, tabbed. * @warning Requires that the MainWindow was constructed with MainWindowOption_HasCentralFrame option. - * @param The DockWidget to dock. + * @param The dockwidget to dock. * * @sa DockWidgetBase::addDockWidgetAsTab() */