From 465675d3329fe0b504602069cd64a4a162aa2dab Mon Sep 17 00:00:00 2001
From: Daniel Molkentin <daniel.molkentin@nokia.com>
Date: Fri, 4 Jun 2010 12:43:10 +0200
Subject: [PATCH] Two descriptions in the file new dialog were swapped

No strings translations were harmed in this commit. No kittens either.

Reviewed-by: Alessandro Portale
---
 src/plugins/designer/formeditorplugin.cpp | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/plugins/designer/formeditorplugin.cpp b/src/plugins/designer/formeditorplugin.cpp
index 6eb8bd8d47f..9f842de177f 100644
--- a/src/plugins/designer/formeditorplugin.cpp
+++ b/src/plugins/designer/formeditorplugin.cpp
@@ -129,16 +129,16 @@ 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 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."));
+    wizardParameters.setDescription(tr("Creates a Qt Designer form that you can add to a Qt C++ project. "
+                                       "This is useful if you already have an existing class for the UI business logic."));
     addAutoReleasedObject(new FormWizard(wizardParameters, this));
 
 #ifdef CPP_ENABLED
     wizardParameters.setKind(Core::IWizard::ClassWizard);
     wizardParameters.setDisplayName(tr("Qt Designer Form Class"));
     wizardParameters.setId(QLatin1String("C.FormClass"));
-    wizardParameters.setDescription(tr("Creates a Qt Designer form that you can add to a Qt C++ project. "
-                                       "This is useful if you already have an existing class for the UI business logic."));
+    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."));
     addAutoReleasedObject(new FormClassWizard(wizardParameters, this));
     addAutoReleasedObject(new CppSettingsPage);
 #endif
-- 
GitLab