This commit is contained in:
Uwe Kindler 2021-01-16 15:01:02 +01:00
commit bd41ec1627
4 changed files with 7 additions and 7 deletions

View File

@ -265,7 +265,7 @@ public:
*/ */
void closeOtherAreas(CDockAreaWidget* KeepOpenArea); void closeOtherAreas(CDockAreaWidget* KeepOpenArea);
signals: Q_SIGNALS:
/** /**
* This signal is emitted if one or multiple dock areas has been added to * This signal is emitted if one or multiple dock areas has been added to
* the internal list of dock areas. * the internal list of dock areas.

View File

@ -506,7 +506,7 @@ public:
*/ */
void setSplitterSizes(CDockAreaWidget *ContainedArea, const QList<int>& sizes); void setSplitterSizes(CDockAreaWidget *ContainedArea, const QList<int>& sizes);
public slots: public Q_SLOTS:
/** /**
* Opens the perspective with the given name. * Opens the perspective with the given name.
*/ */
@ -519,7 +519,7 @@ public slots:
*/ */
void setDockWidgetFocused(CDockWidget* DockWidget); void setDockWidgetFocused(CDockWidget* DockWidget);
signals: Q_SIGNALS:
/** /**
* This signal is emitted if the list of perspectives changed * This signal is emitted if the list of perspectives changed
*/ */

View File

@ -58,7 +58,7 @@ private:
DockWidgetPrivate* d; ///< private data (pimpl) DockWidgetPrivate* d; ///< private data (pimpl)
friend struct DockWidgetPrivate; friend struct DockWidgetPrivate;
private slots: private Q_SLOTS:
/** /**
* Adjusts the toolbar icon sizes according to the floating state * Adjusts the toolbar icon sizes according to the floating state
*/ */
@ -484,7 +484,7 @@ public: // reimplements QFrame -----------------------------------------------
*/ */
virtual bool event(QEvent *e) override; virtual bool event(QEvent *e) override;
public slots: public Q_SLOTS:
/** /**
* This property controls whether the dock widget is open or closed. * This property controls whether the dock widget is open or closed.
* The toogleViewAction triggers this slot * The toogleViewAction triggers this slot
@ -545,7 +545,7 @@ public slots:
void showNormal(); void showNormal();
signals: Q_SIGNALS:
/** /**
* This signal is emitted if the dock widget is opened or closed * This signal is emitted if the dock widget is opened or closed
*/ */

View File

@ -118,7 +118,7 @@ private:
friend class CDockAreaWidget; friend class CDockAreaWidget;
friend class CFloatingWidgetTitleBar; friend class CFloatingWidgetTitleBar;
private slots: private Q_SLOTS:
void onDockAreasAddedOrRemoved(); void onDockAreasAddedOrRemoved();
void onDockAreaCurrentChanged(int Index); void onDockAreaCurrentChanged(int Index);