Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Gautam Chitnis
web-ui-redesign
Commits
0ff855d2
Commit
0ff855d2
authored
Mar 03, 2007
by
Jean-Baptiste Kempf
Browse files
Qt4 - remove a stupid debug thing and rename Disk => Disc
parent
d55b0261
Changes
2
Hide whitespace changes
Inline
Side-by-side
modules/gui/qt4/dialogs/open.cpp
View file @
0ff855d2
...
...
@@ -46,7 +46,7 @@ OpenDialog::OpenDialog( QWidget *parent, intf_thread_t *_p_intf, bool modal ) :
diskOpenPanel
=
new
DiskOpenPanel
(
this
,
p_intf
);
netOpenPanel
=
new
NetOpenPanel
(
this
,
p_intf
);
ui
.
Tab
->
addTab
(
fileOpenPanel
,
qtr
(
"File"
));
ui
.
Tab
->
addTab
(
diskOpenPanel
,
qtr
(
"Dis
k
"
));
ui
.
Tab
->
addTab
(
diskOpenPanel
,
qtr
(
"Dis
c
"
));
ui
.
Tab
->
addTab
(
netOpenPanel
,
qtr
(
"Network"
));
ui
.
advancedFrame
->
hide
();
...
...
@@ -146,8 +146,6 @@ void OpenDialog::toggleAdvancedPanel()
}
resize
(
width
(),
mainHeight
+
advHeight
);
}
showTab
(
2
);
}
void
OpenDialog
::
updateMRL
()
{
...
...
modules/gui/qt4/menus.cpp
View file @
0ff855d2
...
...
@@ -143,8 +143,8 @@ QMenu *QVLCMenu::FileMenu()
QMenu
*
menu
=
new
QMenu
();
/* DP_SADD( qtr("Quick &Open File...") , "", "", simpleOpenDialog() );*/
DP_SADD
(
qtr
(
"Open &File..."
),
""
,
""
,
openFileDialog
()
);
DP_SADD
(
qtr
(
"Open &Network..."
),
""
,
""
,
openNetDialog
());
DP_SADD
(
qtr
(
"Open &Disc..."
),
""
,
""
,
openDiscDialog
());
DP_SADD
(
qtr
(
"Open &Network..."
),
""
,
""
,
openNetDialog
());
menu
->
addSeparator
();
DP_SADD
(
qtr
(
"Streaming..."
),
""
,
""
,
streamingDialog
()
);
menu
->
addSeparator
();
...
...
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