Fix some clazy errors
Mostly about using qualified names for methods called from QML
This commit is contained in:
@@ -121,7 +121,8 @@ public:
|
||||
* shown.
|
||||
* @sa MainWindow::addDockWidget(), DockWidget::addDockWidgetToContainingWindow()
|
||||
*/
|
||||
Q_INVOKABLE void addDockWidgetAsTab(DockWidgetBase *other, InitialOption initialOption = {});
|
||||
Q_INVOKABLE void addDockWidgetAsTab(KDDockWidgets::DockWidgetBase *other,
|
||||
KDDockWidgets::InitialOption initialOption = {});
|
||||
|
||||
/**
|
||||
* @brief docks @p other widget into the window that contains this one.
|
||||
@@ -135,9 +136,11 @@ public:
|
||||
* @param initialOption Allows to specify some extra options that are used while docking.
|
||||
* @sa MainWindow::addDockWidget(), DockWidget::addDockWidgetAsTab()
|
||||
*/
|
||||
Q_INVOKABLE void addDockWidgetToContainingWindow(DockWidgetBase *other, KDDockWidgets::Location location,
|
||||
DockWidgetBase *relativeTo = nullptr,
|
||||
InitialOption initialOption = {});
|
||||
Q_INVOKABLE void
|
||||
addDockWidgetToContainingWindow(KDDockWidgets::DockWidgetBase *other,
|
||||
KDDockWidgets::Location location,
|
||||
KDDockWidgets::DockWidgetBase *relativeTo = nullptr,
|
||||
KDDockWidgets::InitialOption initialOption = {});
|
||||
|
||||
/**
|
||||
* @brief sets the widget which this dock widget hosts.
|
||||
|
||||
Reference in New Issue
Block a user