Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Tobias Hunger
qt-creator
Commits
d5a33d28
Commit
d5a33d28
authored
Feb 03, 2011
by
Leena Miettinen
Browse files
Wizards: change terminology
Reviewed-by: dt
parent
950e2ffb
Changes
3
Hide whitespace changes
Inline
Side-by-side
src/plugins/designer/formeditorplugin.cpp
View file @
d5a33d28
...
...
@@ -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++ p
roject. "
wizardParameters
.
setDescription
(
tr
(
"Creates a Qt Designer form that you can add to a Qt
Widget P
roject. "
"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
...
...
src/plugins/qt4projectmanager/qt4projectmanagerconstants.h
View file @
d5a33d28
...
...
@@ -99,7 +99,7 @@ const char * const QTVERSION_SETTINGS_PAGE_NAME = QT_TRANSLATE_NOOP("Qt4ProjectM
// C++ wizard categories
const
char
*
const
QT_APP_WIZARD_CATEGORY
=
"F.QtApplicationProjects"
;
const
char
*
const
QT_APP_WIZARD_TR_SCOPE
=
"Qt4ProjectManager"
;
const
char
*
const
QT_APP_WIZARD_TR_CATEGORY
=
QT_TRANSLATE_NOOP
(
"Qt4ProjectManager"
,
"Qt
Q
Widget Project"
);
const
char
*
const
QT_APP_WIZARD_TR_CATEGORY
=
QT_TRANSLATE_NOOP
(
"Qt4ProjectManager"
,
"Qt Widget Project"
);
// QML wizard categories
const
char
*
const
QML_WIZARD_CATEGORY
=
"C.Projects"
;
// (before Qt)
...
...
src/plugins/resourceeditor/resourceeditorplugin.cpp
View file @
d5a33d28
...
...
@@ -79,7 +79,7 @@ bool ResourceEditorPlugin::initialize(const QStringList &arguments, QString *err
addObject
(
m_editor
);
Core
::
BaseFileWizardParameters
wizardParameters
(
Core
::
IWizard
::
FileWizard
);
wizardParameters
.
setDescription
(
tr
(
"Creates a Qt Resource file (.qrc) that you can add to a Qt
C++ p
roject."
));
wizardParameters
.
setDescription
(
tr
(
"Creates a Qt Resource file (.qrc) that you can add to a Qt
Widget P
roject."
));
wizardParameters
.
setDisplayName
(
tr
(
"Qt Resource file"
));
wizardParameters
.
setId
(
QLatin1String
(
"F.Resource"
));
wizardParameters
.
setCategory
(
QLatin1String
(
Core
::
Constants
::
WIZARD_CATEGORY_QT
));
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment