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
86dc1fb6
Commit
86dc1fb6
authored
Sep 28, 2010
by
Leena Miettinen
Browse files
UI text - fix capitalization
parent
e684aebd
Changes
3
Hide whitespace changes
Inline
Side-by-side
src/plugins/classview/classviewnavigationwidget.cpp
View file @
86dc1fb6
...
...
@@ -137,7 +137,7 @@ QList<QToolButton *> NavigationWidget::createToolButtons()
d_ptr
->
fullProjectsModeButton
->
setIcon
(
QIcon
(
QLatin1String
(
":/classview/images/hierarchicalmode.png"
)));
d_ptr
->
fullProjectsModeButton
->
setCheckable
(
true
);
d_ptr
->
fullProjectsModeButton
->
setToolTip
(
tr
(
"Show
s
ubprojects"
));
d_ptr
->
fullProjectsModeButton
->
setToolTip
(
tr
(
"Show
S
ubprojects"
));
// by default - not a flat mode
setFlatMode
(
false
);
...
...
src/plugins/projectexplorer/projecttreewidget.cpp
View file @
86dc1fb6
...
...
@@ -106,12 +106,12 @@ ProjectTreeWidget::ProjectTreeWidget(QWidget *parent)
layout
->
setContentsMargins
(
0
,
0
,
0
,
0
);
setLayout
(
layout
);
m_filterProjectsAction
=
new
QAction
(
tr
(
"Simplify
t
ree"
),
this
);
m_filterProjectsAction
=
new
QAction
(
tr
(
"Simplify
T
ree"
),
this
);
m_filterProjectsAction
->
setCheckable
(
true
);
m_filterProjectsAction
->
setChecked
(
false
);
// default is the traditional complex tree
connect
(
m_filterProjectsAction
,
SIGNAL
(
toggled
(
bool
)),
this
,
SLOT
(
setProjectFilter
(
bool
)));
m_filterGeneratedFilesAction
=
new
QAction
(
tr
(
"Hide
g
enerated
f
iles"
),
this
);
m_filterGeneratedFilesAction
=
new
QAction
(
tr
(
"Hide
G
enerated
F
iles"
),
this
);
m_filterGeneratedFilesAction
->
setCheckable
(
true
);
m_filterGeneratedFilesAction
->
setChecked
(
true
);
connect
(
m_filterGeneratedFilesAction
,
SIGNAL
(
toggled
(
bool
)),
this
,
SLOT
(
setGeneratedFilesFilter
(
bool
)));
...
...
@@ -363,7 +363,7 @@ Core::NavigationView ProjectTreeWidgetFactory::createWidget()
QToolButton
*
filter
=
new
QToolButton
;
filter
->
setIcon
(
QIcon
(
QLatin1String
(
Core
::
Constants
::
ICON_FILTER
)));
filter
->
setToolTip
(
tr
(
"Filter
t
ree"
));
filter
->
setToolTip
(
tr
(
"Filter
T
ree"
));
filter
->
setPopupMode
(
QToolButton
::
InstantPopup
);
QMenu
*
filterMenu
=
new
QMenu
(
filter
);
filterMenu
->
addAction
(
ptw
->
m_filterProjectsAction
);
...
...
src/plugins/qmljseditor/qmljsoutline.cpp
View file @
86dc1fb6
...
...
@@ -83,7 +83,7 @@ QmlJSOutlineWidget::QmlJSOutlineWidget(QWidget *parent) :
layout
->
addWidget
(
m_treeView
);
m_showBindingsAction
=
new
QAction
(
this
);
m_showBindingsAction
->
setText
(
tr
(
"Show
a
ll
b
indings"
));
m_showBindingsAction
->
setText
(
tr
(
"Show
A
ll
B
indings"
));
m_showBindingsAction
->
setCheckable
(
true
);
m_showBindingsAction
->
setChecked
(
true
);
connect
(
m_showBindingsAction
,
SIGNAL
(
toggled
(
bool
)),
this
,
SLOT
(
setShowBindings
(
bool
)));
...
...
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