projectexplorer: s/IPropertiesPanel/PropertiesPanel. No need for subclassing.

This commit is contained in:
hjk
2011-04-14 13:32:30 +02:00
parent 3ac9bee144
commit 61700c16e1
12 changed files with 60 additions and 214 deletions

View File

@@ -45,7 +45,7 @@ QT_END_NAMESPACE
namespace ProjectExplorer {
class IPropertiesPanel;
class PropertiesPanel;
class Project;
class Target;
class BuildConfiguration;
@@ -62,12 +62,12 @@ public:
PanelsWidget(QWidget *parent);
~PanelsWidget();
// Adds a widget
void addPropertiesPanel(IPropertiesPanel *panel);
void addPropertiesPanel(PropertiesPanel *panel);
private:
void addPanelWidget(IPropertiesPanel *panel, int row);
void addPanelWidget(PropertiesPanel *panel, int row);
QList<IPropertiesPanel *> m_panels;
QList<PropertiesPanel *> m_panels;
QGridLayout *m_layout;
QWidget *m_root;
};