TargetInformation: The coding style disallows structs

So make this struct a class

Change-Id: Idb4366c6c1130bc318df896c45a9f878f29eb133
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com>
Reviewed-by: Daniel Teske <daniel.teske@digia.com>
This commit is contained in:
Daniel Teske
2013-03-21 12:11:28 +01:00
parent d3337ea23a
commit e0314eb4f3
3 changed files with 4 additions and 3 deletions

View File

@@ -56,7 +56,7 @@ namespace Qt4ProjectManager {
class Qt4Project; class Qt4Project;
class Qt4ProFileNode; class Qt4ProFileNode;
class Qt4PriFileNode; class Qt4PriFileNode;
struct TargetInformation; class TargetInformation;
namespace Internal { namespace Internal {
class Qt4RunConfigurationFactory; class Qt4RunConfigurationFactory;

View File

@@ -293,8 +293,9 @@ private:
} // namespace Internal } // namespace Internal
struct QT4PROJECTMANAGER_EXPORT TargetInformation class QT4PROJECTMANAGER_EXPORT TargetInformation
{ {
public:
bool valid; bool valid;
QString target; QString target;
QString destDir; QString destDir;

View File

@@ -56,7 +56,7 @@ class Qt4Manager;
class Qt4PriFileNode; class Qt4PriFileNode;
class Qt4ProFileNode; class Qt4ProFileNode;
class Qt4RunStep; class Qt4RunStep;
struct TargetInformation; class TargetInformation;
namespace Internal { namespace Internal {
class CentralizedFolderWatcher; class CentralizedFolderWatcher;