Skip to content

Commit bd41ec1

Browse files
2 parents b54dab7 + e66ef60 commit bd41ec1

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

src/DockContainerWidget.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ class ADS_EXPORT CDockContainerWidget : public QFrame
265265
*/
266266
void closeOtherAreas(CDockAreaWidget* KeepOpenArea);
267267

268-
signals:
268+
Q_SIGNALS:
269269
/**
270270
* This signal is emitted if one or multiple dock areas has been added to
271271
* the internal list of dock areas.

src/DockManager.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -506,7 +506,7 @@ class ADS_EXPORT CDockManager : public CDockContainerWidget
506506
*/
507507
void setSplitterSizes(CDockAreaWidget *ContainedArea, const QList<int>& sizes);
508508

509-
public slots:
509+
public Q_SLOTS:
510510
/**
511511
* Opens the perspective with the given name.
512512
*/
@@ -519,7 +519,7 @@ public slots:
519519
*/
520520
void setDockWidgetFocused(CDockWidget* DockWidget);
521521

522-
signals:
522+
Q_SIGNALS:
523523
/**
524524
* This signal is emitted if the list of perspectives changed
525525
*/

src/DockWidget.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ class ADS_EXPORT CDockWidget : public QFrame
5858
DockWidgetPrivate* d; ///< private data (pimpl)
5959
friend struct DockWidgetPrivate;
6060

61-
private slots:
61+
private Q_SLOTS:
6262
/**
6363
* Adjusts the toolbar icon sizes according to the floating state
6464
*/
@@ -484,7 +484,7 @@ private slots:
484484
*/
485485
virtual bool event(QEvent *e) override;
486486

487-
public slots:
487+
public Q_SLOTS:
488488
/**
489489
* This property controls whether the dock widget is open or closed.
490490
* The toogleViewAction triggers this slot
@@ -545,7 +545,7 @@ public slots:
545545
void showNormal();
546546

547547

548-
signals:
548+
Q_SIGNALS:
549549
/**
550550
* This signal is emitted if the dock widget is opened or closed
551551
*/

src/FloatingDockContainer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ class ADS_EXPORT CFloatingDockContainer : public tFloatingWidgetBase, public IFl
118118
friend class CDockAreaWidget;
119119
friend class CFloatingWidgetTitleBar;
120120

121-
private slots:
121+
private Q_SLOTS:
122122
void onDockAreasAddedOrRemoved();
123123
void onDockAreaCurrentChanged(int Index);
124124

0 commit comments

Comments
 (0)