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
d2e9658e
Commit
d2e9658e
authored
May 18, 2010
by
hjk
Browse files
debugger: use book case also in new actions
parent
2f69bae6
Changes
1
Show whitespace changes
Inline
Side-by-side
src/plugins/debugger/watchwindow.cpp
View file @
d2e9658e
...
...
@@ -300,10 +300,10 @@ void WatchWindow::contextMenuEvent(QContextMenuEvent *ev)
const
bool
canSetWatchpoint
=
engineCapabilities
&
WatchpointCapability
;
if
(
canSetWatchpoint
&&
!
address
.
isEmpty
())
{
actSetWatchpoint
=
new
QAction
(
tr
(
"Break on
c
hanging %1"
).
arg
(
address
),
&
menu
);
new
QAction
(
tr
(
"Break on
C
hanging
Contents of
%1"
).
arg
(
address
),
&
menu
);
}
else
{
actSetWatchpoint
=
new
QAction
(
tr
(
"Break on
c
hanging
c
ontents"
),
&
menu
);
new
QAction
(
tr
(
"Break on
C
hanging
C
ontents"
),
&
menu
);
actSetWatchpoint
->
setEnabled
(
false
);
}
...
...
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