ADS: Remove struct from DockWidgetTab

We do not use struct in Qt Creator.

Change-Id: I299effff6a7e6b79494be9a9e2dece1d6492714a
Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
This commit is contained in:
Tobias Hunger
2020-03-02 10:50:36 +01:00
committed by Tim Jenssen
parent ce6b5b37e0
commit d09c92ccee
5 changed files with 10 additions and 10 deletions

View File

@@ -43,7 +43,7 @@ namespace ADS {
class DockWidget;
class DockAreaWidget;
struct DockWidgetTabPrivate;
class DockWidgetTabPrivate;
/**
* A dock widget tab that shows a title and an icon.
@@ -57,7 +57,7 @@ class ADS_EXPORT DockWidgetTab : public QFrame
private:
DockWidgetTabPrivate *d; ///< private data (pimpl)
friend struct DockWidgetTabPrivate;
friend class DockWidgetTabPrivate;
friend class DockWidget;
void onDockWidgetFeaturesChanged();
void detachDockWidget();