Skip to content
Snippets Groups Projects
Commit 5bbb4c61 authored by Kai Koehne's avatar Kai Koehne
Browse files

QmlProject: Fix memory leak

Remove unneeded widget (has been added unintendedly in 60fffd
parent 7830451d
No related branches found
No related tags found
No related merge requests found
...@@ -178,8 +178,6 @@ QWidget *QmlProjectRunConfiguration::createConfigurationWidget() ...@@ -178,8 +178,6 @@ QWidget *QmlProjectRunConfiguration::createConfigurationWidget()
connect(qmlViewer, SIGNAL(changed(QString)), this, SLOT(onViewerChanged())); connect(qmlViewer, SIGNAL(changed(QString)), this, SLOT(onViewerChanged()));
QToolButton *qtVersionSelector = new QToolButton;
QLineEdit *qmlViewerArgs = new QLineEdit; QLineEdit *qmlViewerArgs = new QLineEdit;
qmlViewerArgs->setText(m_qmlViewerArgs); qmlViewerArgs->setText(m_qmlViewerArgs);
connect(qmlViewerArgs, SIGNAL(textChanged(QString)), this, SLOT(onViewerArgsChanged())); connect(qmlViewerArgs, SIGNAL(textChanged(QString)), this, SLOT(onViewerArgsChanged()));
......
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