ADS: Remove struct from FloatingDockContainer

We do not use structs in Qt Creator.

Change-Id: I179013eb40f6fd2a836b49f40c6ee17b5f0ce6d7
Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
This commit is contained in:
Tobias Hunger
2020-03-02 10:29:53 +01:00
committed by Tim Jenssen
parent bc64318e31
commit a24dead5f6
4 changed files with 9 additions and 9 deletions

View File

@@ -48,7 +48,7 @@ using FloatingWidgetBaseType = QWidget;
namespace ADS {
struct FloatingDockContainerPrivate;
class FloatingDockContainerPrivate;
class DockManager;
struct DockManagerPrivate;
class DockAreaWidget;
@@ -111,7 +111,7 @@ class ADS_EXPORT FloatingDockContainer : public FloatingWidgetBaseType,
Q_OBJECT
private:
FloatingDockContainerPrivate *d; ///< private data (pimpl)
friend struct FloatingDockContainerPrivate;
friend class FloatingDockContainerPrivate;
friend class DockManager;
friend struct DockManagerPrivate;
friend class DockAreaTabBar;