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
Marco Bubke
flatpak-qt-creator
Commits
e53fc866
Commit
e53fc866
authored
Aug 18, 2009
by
hjk
Browse files
debugger: fix modules window context menu
parent
589cc43a
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/moduleswindow.cpp
View file @
e53fc866
...
...
@@ -107,10 +107,6 @@ void ModulesWindow::contextMenuEvent(QContextMenuEvent *ev)
QMenu
menu
;
QAction
*
act0
=
new
QAction
(
tr
(
"Update module list"
),
&
menu
);
QAction
*
act1
=
new
QAction
(
tr
(
"Adjust column widths to contents"
),
&
menu
);
QAction
*
act2
=
new
QAction
(
tr
(
"Always adjust column widths to contents"
),
&
menu
);
act2
->
setCheckable
(
true
);
act2
->
setChecked
(
m_alwaysResizeColumnsToContents
);
QAction
*
act3
=
new
QAction
(
tr
(
"Show source files for module
\"
%1
\"
"
).
arg
(
name
),
&
menu
);
QAction
*
act4
=
new
QAction
(
tr
(
"Load symbols for all modules"
),
&
menu
);
...
...
@@ -140,6 +136,8 @@ void ModulesWindow::contextMenuEvent(QContextMenuEvent *ev)
menu
.
addAction
(
tr
(
"Adjust column widths to contents"
));
QAction
*
actAlwaysAdjustColumnWidth
=
menu
.
addAction
(
tr
(
"Always adjust column widths to contents"
));
actAlwaysAdjustColumnWidth
->
setCheckable
(
true
);
actAlwaysAdjustColumnWidth
->
setChecked
(
m_alwaysResizeColumnsToContents
);
menu
.
addSeparator
();
menu
.
addAction
(
theDebuggerAction
(
SettingsDialog
));
...
...
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