Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
0b7188d4
Commit
0b7188d4
authored
Sep 01, 2010
by
Tobias Hunger
Browse files
Fix casing on Uncheck all button
parent
4cbbe366
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/plugins/qt4projectmanager/wizards/targetsetuppage.cpp
View file @
0b7188d4
...
...
@@ -453,7 +453,7 @@ void TargetSetupPage::toggleAll()
}
}
m_toggleWillCheck
=
!
m_toggleWillCheck
;
m_ui
->
uncheckButton
->
setText
(
m_toggleWillCheck
?
tr
(
"
c
heck all"
)
:
tr
(
"
u
ncheck all"
));
m_ui
->
uncheckButton
->
setText
(
m_toggleWillCheck
?
tr
(
"
C
heck all"
)
:
tr
(
"
U
ncheck all"
));
m_ui
->
uncheckButton
->
setToolTip
(
m_toggleWillCheck
?
tr
(
"Check all Qt versions"
)
:
tr
(
"Uncheck all Qt versions"
));
}
...
...
src/plugins/qt4projectmanager/wizards/targetsetuppage.ui
View file @
0b7188d4
...
...
@@ -57,7 +57,7 @@
<string>
Uncheck all Qt versions
</string>
</property>
<property
name=
"text"
>
<string>
u
ncheck all
</string>
<string>
U
ncheck all
</string>
</property>
</widget>
</item>
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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