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
b34c5d9e
Commit
b34c5d9e
authored
Sep 03, 2010
by
Robert Loehning
Browse files
Fixed capitalization for "Check All" button
parent
5085f0fb
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/plugins/qt4projectmanager/wizards/targetsetuppage.cpp
View file @
b34c5d9e
...
...
@@ -471,7 +471,7 @@ void TargetSetupPage::checkAllButtonClicked()
checkAll
(
m_toggleWillCheck
);
m_toggleWillCheck
=
!
m_toggleWillCheck
;
m_ui
->
uncheckButton
->
setText
(
m_toggleWillCheck
?
tr
(
"Check
a
ll"
)
:
tr
(
"Uncheck
a
ll"
));
m_ui
->
uncheckButton
->
setText
(
m_toggleWillCheck
?
tr
(
"Check
A
ll"
)
:
tr
(
"Uncheck
A
ll"
));
m_ui
->
uncheckButton
->
setToolTip
(
m_toggleWillCheck
?
tr
(
"Check all Qt versions"
)
:
tr
(
"Uncheck all Qt versions"
));
}
...
...
src/plugins/qt4projectmanager/wizards/targetsetuppage.ui
View file @
b34c5d9e
...
...
@@ -57,7 +57,7 @@
<string>
Uncheck all Qt versions
</string>
</property>
<property
name=
"text"
>
<string>
Uncheck
a
ll
</string>
<string>
Uncheck
A
ll
</string>
</property>
</widget>
</item>
...
...
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