Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Gautam Chitnis
web-ui-redesign
Commits
0c6ddb9b
Commit
0c6ddb9b
authored
Aug 31, 2006
by
Christophe Mutricy
Browse files
Initialize the verbosity box
parent
9cd790fc
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/gui/qt4/dialogs/messages.cpp
View file @
0c6ddb9b
...
...
@@ -40,7 +40,8 @@ MessagesDialog::MessagesDialog( intf_thread_t *_p_intf, bool _main_input ) :
QPushButton
*
clearButton
=
new
QPushButton
(
qtr
(
"&Clear"
));
QPushButton
*
saveLogButton
=
new
QPushButton
(
qtr
(
"&Save as..."
));
QSpinBox
*
verbosityBox
=
new
QSpinBox
();
verbosityBox
->
setRange
(
1
,
3
);
verbosityBox
->
setRange
(
0
,
2
);
verbosityBox
->
setValue
(
config_GetInt
(
p_intf
,
"verbose"
));
verbosityBox
->
setWrapping
(
true
);
QLabel
*
verbosityLabel
=
new
QLabel
(
qtr
(
"Verbosity Level"
));
messages
=
new
QTextEdit
();
...
...
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