diff options
author | Tobias Hunger <tobias.hunger@digia.com> | 2014-05-27 14:17:18 +0200 |
---|---|---|
committer | Tobias Hunger <tobias.hunger@digia.com> | 2014-06-06 09:35:48 +0200 |
commit | a231e03ba80891d4fbe774a6148c21f7a24e69d9 (patch) | |
tree | 73b63d589f9f2870ca470ba571ae288d22f13357 /src | |
parent | c4ab83f5ce66eebd3880f36dad9d0f7071304848 (diff) | |
download | qt-creator-a231e03ba80891d4fbe774a6148c21f7a24e69d9.tar.gz |
Replace internal struct with class
Coding style fix
Change-Id: If7b0d1154094084a9be0276f1d8fd9e32a44eb92
Reviewed-by: Orgad Shaneh <orgads@gmail.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/plugins/projectexplorer/projectfilewizardextension.cpp | 3 | ||||
-rw-r--r-- | src/plugins/projectexplorer/projectfilewizardextension.h | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/plugins/projectexplorer/projectfilewizardextension.cpp b/src/plugins/projectexplorer/projectfilewizardextension.cpp index fd08ac68c0..6d4fc43f82 100644 --- a/src/plugins/projectexplorer/projectfilewizardextension.cpp +++ b/src/plugins/projectexplorer/projectfilewizardextension.cpp @@ -249,8 +249,9 @@ static inline AddNewTree *getChoices(const QStringList &generatedFiles, } // --------- ProjectWizardContext -struct ProjectWizardContext +class ProjectWizardContext { +public: ProjectWizardContext(); void clear(); diff --git a/src/plugins/projectexplorer/projectfilewizardextension.h b/src/plugins/projectexplorer/projectfilewizardextension.h index 8956dd280f..a12f8dc0ff 100644 --- a/src/plugins/projectexplorer/projectfilewizardextension.h +++ b/src/plugins/projectexplorer/projectfilewizardextension.h @@ -39,7 +39,7 @@ class FolderNode; namespace Internal { -struct ProjectWizardContext; +class ProjectWizardContext; class PROJECTEXPLORER_EXPORT ProjectFileWizardExtension : public Core::IFileWizardExtension { |