Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
4c9b6e28
Commit
4c9b6e28
authored
Dec 20, 2007
by
Rafaël Carré
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
revert [23722]
parent
f8c26749
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
modules/gui/qt4/dialogs_provider.cpp
modules/gui/qt4/dialogs_provider.cpp
+5
-2
modules/gui/qt4/dialogs_provider.hpp
modules/gui/qt4/dialogs_provider.hpp
+2
-0
No files found.
modules/gui/qt4/dialogs_provider.cpp
View file @
4c9b6e28
...
...
@@ -27,6 +27,7 @@
#include <QSignalMapper>
#include <QFileDialog>
#include <vlc/vlc.h>
#include "qt4.hpp"
#include "dialogs_provider.hpp"
#include "main_interface.hpp"
...
...
@@ -126,8 +127,10 @@ void DialogsProvider::customEvent( QEvent *event )
QVLCMenu
::
MiscPopupMenu
(
p_intf
);
break
;
case
INTF_DIALOG_WIZARD
:
case
INTF_DIALOG_STREAMWIZARD
:
#ifdef UPDATE_CHECK
case
INTF_DIALOG_UPDATEVLC
:
updateDialog
();
break
;
#endif
case
INTF_DIALOG_EXIT
:
default:
msg_Warn
(
p_intf
,
"unimplemented dialog"
);
...
...
@@ -173,12 +176,12 @@ void DialogsProvider::helpDialog()
HelpDialog
::
getInstance
(
p_intf
)
->
toggleVisible
();
}
#ifdef UPDATE_CHECK
void
DialogsProvider
::
updateDialog
()
{
#ifdef UPDATE_CHECK
UpdateDialog
::
getInstance
(
p_intf
)
->
toggleVisible
();
#endif
}
#endif
void
DialogsProvider
::
aboutDialog
()
{
...
...
modules/gui/qt4/dialogs_provider.hpp
View file @
4c9b6e28
...
...
@@ -146,7 +146,9 @@ public slots:
void
messagesDialog
();
void
vlmDialog
();
void
helpDialog
();
#ifdef UPDATE_CHECK
void
updateDialog
();
#endif
void
aboutDialog
();
void
gotoTimeDialog
();
void
podcastConfigureDialog
();
...
...
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