Wizards: change terminology

Reviewed-by: dt
This commit is contained in:
Leena Miettinen
2011-02-03 15:53:47 +01:00
parent 950e2ffbe9
commit d5a33d2860
3 changed files with 4 additions and 4 deletions

View File

@@ -126,7 +126,7 @@ void FormEditorPlugin::initializeTemplates()
const QString formFileType = QLatin1String(Constants::FORM_FILE_TYPE);
wizardParameters.setDisplayName(tr("Qt Designer Form"));
wizardParameters.setId(QLatin1String("D.Form"));
wizardParameters.setDescription(tr("Creates a Qt Designer form that you can add to a Qt C++ project. "
wizardParameters.setDescription(tr("Creates a Qt Designer form that you can add to a Qt Widget Project. "
"This is useful if you already have an existing class for the UI business logic."));
addAutoReleasedObject(new FormWizard(wizardParameters, this));
@@ -135,7 +135,7 @@ void FormEditorPlugin::initializeTemplates()
wizardParameters.setDisplayName(tr("Qt Designer Form Class"));
wizardParameters.setId(QLatin1String("C.FormClass"));
wizardParameters.setDescription(tr("Creates a Qt Designer form along with a matching class (C++ header and source file) "
"for implementation purposes. You can add the form and class to an existing Qt C++ Project."));
"for implementation purposes. You can add the form and class to an existing Qt Widget Project."));
addAutoReleasedObject(new FormClassWizard(wizardParameters, this));
addAutoReleasedObject(new CppSettingsPage);
#endif