Skip to content
Snippets Groups Projects
Commit 2ccd2092 authored by Christian Kandeler's avatar Christian Kandeler
Browse files

Maemo: Fix leak.

Reviewed-by: kh1
parent bdea4309
No related branches found
No related tags found
No related merge requests found
...@@ -71,6 +71,11 @@ MaemoPackageCreationWidget::MaemoPackageCreationWidget(MaemoPackageCreationStep ...@@ -71,6 +71,11 @@ MaemoPackageCreationWidget::MaemoPackageCreationWidget(MaemoPackageCreationStep
QTimer::singleShot(0, this, SLOT(initGui())); QTimer::singleShot(0, this, SLOT(initGui()));
} }
MaemoPackageCreationWidget::~MaemoPackageCreationWidget()
{
delete m_ui;
}
void MaemoPackageCreationWidget::init() void MaemoPackageCreationWidget::init()
{ {
} }
......
...@@ -57,6 +57,7 @@ class MaemoPackageCreationWidget : public ProjectExplorer::BuildStepConfigWidget ...@@ -57,6 +57,7 @@ class MaemoPackageCreationWidget : public ProjectExplorer::BuildStepConfigWidget
Q_OBJECT Q_OBJECT
public: public:
MaemoPackageCreationWidget(MaemoPackageCreationStep *step); MaemoPackageCreationWidget(MaemoPackageCreationStep *step);
~MaemoPackageCreationWidget();
virtual void init(); virtual void init();
virtual QString summaryText() const; virtual QString summaryText() const;
......
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