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
77558abc
Commit
77558abc
authored
Jun 16, 2010
by
Robert Loehning
Browse files
Fixed translation of "Projects"
Reviewed-by: dt
parent
16081c10
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/plugins/cmakeprojectmanager/cmakeprojectmanager.cpp
View file @
77558abc
...
...
@@ -37,6 +37,7 @@
#include
<projectexplorer/environment.h>
#include
<qtconcurrent/QtConcurrentTools>
#include
<QtCore/QtConcurrentRun>
#include
<QtCore/QCoreApplication>
#include
<QtCore/QSettings>
#include
<QtGui/QFormLayout>
#include
<QtGui/QBoxLayout>
...
...
@@ -255,7 +256,8 @@ QString CMakeSettingsPage::category() const
QString
CMakeSettingsPage
::
displayCategory
()
const
{
return
tr
(
ProjectExplorer
::
Constants
::
PROJECTEXPLORER_SETTINGS_TR_CATEGORY
);
return
QCoreApplication
::
translate
(
"ProjectExplorer"
,
ProjectExplorer
::
Constants
::
PROJECTEXPLORER_SETTINGS_TR_CATEGORY
);
}
QIcon
CMakeSettingsPage
::
categoryIcon
()
const
...
...
src/plugins/projectexplorer/projectexplorersettingspage.cpp
View file @
77558abc
...
...
@@ -36,6 +36,7 @@
#include
<coreplugin/filemanager.h>
#include
<QtGui/QLabel>
#include
<QtCore/QCoreApplication>
namespace
ProjectExplorer
{
namespace
Internal
{
...
...
@@ -136,7 +137,8 @@ QString ProjectExplorerSettingsPage::category() const
QString
ProjectExplorerSettingsPage
::
displayCategory
()
const
{
return
tr
(
Constants
::
PROJECTEXPLORER_SETTINGS_TR_CATEGORY
);
return
QCoreApplication
::
translate
(
"ProjectExplorer"
,
Constants
::
PROJECTEXPLORER_SETTINGS_TR_CATEGORY
);
}
QIcon
ProjectExplorerSettingsPage
::
categoryIcon
()
const
...
...
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