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
Tobias Hunger
qt-creator
Commits
a1e103c2
Commit
a1e103c2
authored
Aug 30, 2010
by
Tobias Hunger
Browse files
Make configuration name more visible
* Make the name of the configuration about to be removed more visible.
parent
df0c17b4
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/plugins/projectexplorer/buildsettingspropertiespage.cpp
View file @
a1e103c2
...
...
@@ -318,7 +318,7 @@ void BuildSettingsWidget::cloneConfiguration()
void
BuildSettingsWidget
::
deleteConfiguration
()
{
QMessageBox
msgBox
(
QMessageBox
::
Question
,
tr
(
"Remove Build Configuration?"
),
tr
(
"Do you really want to delete build configuration
%1
."
).
arg
(
m_buildConfiguration
->
displayName
()),
tr
(
"Do you really want to delete build configuration
<b>%1</b>
."
).
arg
(
m_buildConfiguration
->
displayName
()),
QMessageBox
::
Yes
|
QMessageBox
::
No
,
this
);
msgBox
.
setDefaultButton
(
QMessageBox
::
No
);
msgBox
.
setEscapeButton
(
QMessageBox
::
No
);
...
...
src/plugins/projectexplorer/runsettingspropertiespage.cpp
View file @
a1e103c2
...
...
@@ -256,7 +256,7 @@ void RunSettingsWidget::removeRunConfiguration()
{
RunConfiguration
*
rc
=
m_target
->
activeRunConfiguration
();
QMessageBox
msgBox
(
QMessageBox
::
Question
,
tr
(
"Remove Run Configuration?"
),
tr
(
"Do you really want to delete deploy configuration
%1
."
).
arg
(
rc
->
displayName
()),
tr
(
"Do you really want to delete deploy configuration
<b>%1</b>
."
).
arg
(
rc
->
displayName
()),
QMessageBox
::
Yes
|
QMessageBox
::
No
,
this
);
msgBox
.
setDefaultButton
(
QMessageBox
::
No
);
msgBox
.
setEscapeButton
(
QMessageBox
::
No
);
...
...
@@ -366,7 +366,7 @@ void RunSettingsWidget::removeDeployConfiguration()
{
DeployConfiguration
*
dc
=
m_target
->
activeDeployConfiguration
();
QMessageBox
msgBox
(
QMessageBox
::
Question
,
tr
(
"Remove Deploy Configuration?"
),
tr
(
"Do you really want to delete deploy configuration
%1
."
).
arg
(
dc
->
displayName
()),
tr
(
"Do you really want to delete deploy configuration
<b>%1</b>
."
).
arg
(
dc
->
displayName
()),
QMessageBox
::
Yes
|
QMessageBox
::
No
,
this
);
msgBox
.
setDefaultButton
(
QMessageBox
::
No
);
msgBox
.
setEscapeButton
(
QMessageBox
::
No
);
...
...
Write
Preview
Markdown
is supported
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