diff options
author | Daniel Teske <daniel.teske@digia.com> | 2014-07-14 13:10:50 +0200 |
---|---|---|
committer | Daniel Teske <daniel.teske@digia.com> | 2014-07-22 16:51:33 +0200 |
commit | 66757653ff50a1385c9c4f5581517224f9d97925 (patch) | |
tree | 809bf28fc84e889aef02b6212fc5828c37070073 /src/plugins/projectexplorer/unconfiguredprojectpanel.h | |
parent | 1e12e53e0d6afc26e42099dcf840dbda46f4574e (diff) | |
download | qt-creator-66757653ff50a1385c9c4f5581517224f9d97925.tar.gz |
ProjectExplorer: Remove ITargetPanelFactory
The indirection via a factory is no longer useful, since the
targetsettingspanel is hardcoded for a build and run panel.
Change-Id: I75543f777a4a7df4cadf12667652424056829689
Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
Diffstat (limited to 'src/plugins/projectexplorer/unconfiguredprojectpanel.h')
-rw-r--r-- | src/plugins/projectexplorer/unconfiguredprojectpanel.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/projectexplorer/unconfiguredprojectpanel.h b/src/plugins/projectexplorer/unconfiguredprojectpanel.h index 0da4bedd8b..d457061fb3 100644 --- a/src/plugins/projectexplorer/unconfiguredprojectpanel.h +++ b/src/plugins/projectexplorer/unconfiguredprojectpanel.h @@ -30,14 +30,14 @@ #ifndef UNCONFIGUREDPROJECTPANEL_H #define UNCONFIGUREDPROJECTPANEL_H -#include "iprojectproperties.h" - #include <QString> +#include <QWidget> QT_FORWARD_DECLARE_CLASS(QPushButton) namespace ProjectExplorer { class Kit; +class Project; class TargetSetupPage; namespace Internal { |