From c57db61da3431cbb44a8537eb1faa166c6e13f74 Mon Sep 17 00:00:00 2001 From: Aurindam Jana Date: Fri, 17 May 2013 14:27:52 +0200 Subject: [PATCH] CustomWizardPage: Register QTextEdit with correct signal. Change-Id: I34bde66c157cdf48a3115a40cd61fc2e8e3a57bc Reviewed-by: Friedemann Kleint --- src/plugins/projectexplorer/customwizard/customwizardpage.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/projectexplorer/customwizard/customwizardpage.cpp b/src/plugins/projectexplorer/customwizard/customwizardpage.cpp index eac4212c371..4e735fab282 100644 --- a/src/plugins/projectexplorer/customwizard/customwizardpage.cpp +++ b/src/plugins/projectexplorer/customwizard/customwizardpage.cpp @@ -305,7 +305,7 @@ QWidget *CustomWizardFieldPage::registerTextEdit(const QString &fieldName, // pasting from Bug tracker, etc. const bool acceptRichText = field.controlAttributes.value(QLatin1String("acceptRichText")) == QLatin1String("true"); textEdit->setAcceptRichText(acceptRichText); - registerField(fieldName, textEdit, "plainText", SIGNAL(textChanged(QString))); + registerField(fieldName, textEdit, "plainText", SIGNAL(textChanged())); const QString defaultText = field.controlAttributes.value(QLatin1String("defaulttext")); m_textEdits.push_back(TextEditData(textEdit, defaultText)); return textEdit;