Skip to content
Snippets Groups Projects
Commit a690949f authored by dt's avatar dt
Browse files

Fixes: Fixes mem leak in gdbmacrosbuildstep.

parent 56fb61d7
No related branches found
No related tags found
No related merge requests found
...@@ -42,7 +42,7 @@ using namespace Qt4ProjectManager; ...@@ -42,7 +42,7 @@ using namespace Qt4ProjectManager;
using namespace Qt4ProjectManager::Internal; using namespace Qt4ProjectManager::Internal;
GdbMacrosBuildStep::GdbMacrosBuildStep(Qt4Project *project) GdbMacrosBuildStep::GdbMacrosBuildStep(Qt4Project *project)
: BuildStep(project), m_project(project), m_configWidget(new GdbMacrosBuildStepConfigWidget) : BuildStep(project), m_project(project)
{ {
} }
......
...@@ -55,7 +55,6 @@ public: ...@@ -55,7 +55,6 @@ public:
virtual bool immutable() const; virtual bool immutable() const;
private: private:
Qt4Project *m_project; Qt4Project *m_project;
GdbMacrosBuildStepConfigWidget* m_configWidget;
QString m_buildDirectory; QString m_buildDirectory;
QString m_qmake; QString m_qmake;
QString m_buildConfiguration; QString m_buildConfiguration;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment