forked from qt-creator/qt-creator
ADS: Remove struct from DockManager
We do not use struct in Qt Creator. Change-Id: I7755d66bc7b77825ab17ed333b23cbe36e52ff72 Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
This commit is contained in:
committed by
Tim Jenssen
parent
2642f8537d
commit
95182dc6b9
@@ -77,8 +77,9 @@ namespace ADS
|
||||
/**
|
||||
* Private data class of DockManager class (pimpl)
|
||||
*/
|
||||
struct DockManagerPrivate
|
||||
class DockManagerPrivate
|
||||
{
|
||||
public:
|
||||
DockManager *q;
|
||||
QList<FloatingDockContainer *> m_floatingWidgets;
|
||||
QList<DockContainerWidget *> m_containers;
|
||||
@@ -144,8 +145,7 @@ namespace ADS
|
||||
bool restoreContainer(int index, DockingStateReader &stream, bool testing);
|
||||
|
||||
void workspaceLoadingProgress();
|
||||
};
|
||||
// struct DockManagerPrivate
|
||||
}; // class DockManagerPrivate
|
||||
|
||||
DockManagerPrivate::DockManagerPrivate(DockManager *parent)
|
||||
: q(parent)
|
||||
|
||||
Reference in New Issue
Block a user