Commit 4c9b6e28 authored by Rafaël Carré's avatar Rafaël Carré

revert [23722]

parent f8c26749
...@@ -27,6 +27,7 @@ ...@@ -27,6 +27,7 @@
#include <QSignalMapper> #include <QSignalMapper>
#include <QFileDialog> #include <QFileDialog>
#include <vlc/vlc.h>
#include "qt4.hpp" #include "qt4.hpp"
#include "dialogs_provider.hpp" #include "dialogs_provider.hpp"
#include "main_interface.hpp" #include "main_interface.hpp"
...@@ -126,8 +127,10 @@ void DialogsProvider::customEvent( QEvent *event ) ...@@ -126,8 +127,10 @@ void DialogsProvider::customEvent( QEvent *event )
QVLCMenu::MiscPopupMenu( p_intf ); break; QVLCMenu::MiscPopupMenu( p_intf ); break;
case INTF_DIALOG_WIZARD: case INTF_DIALOG_WIZARD:
case INTF_DIALOG_STREAMWIZARD: case INTF_DIALOG_STREAMWIZARD:
#ifdef UPDATE_CHECK
case INTF_DIALOG_UPDATEVLC: case INTF_DIALOG_UPDATEVLC:
updateDialog(); break; updateDialog(); break;
#endif
case INTF_DIALOG_EXIT: case INTF_DIALOG_EXIT:
default: default:
msg_Warn( p_intf, "unimplemented dialog" ); msg_Warn( p_intf, "unimplemented dialog" );
...@@ -173,12 +176,12 @@ void DialogsProvider::helpDialog() ...@@ -173,12 +176,12 @@ void DialogsProvider::helpDialog()
HelpDialog::getInstance( p_intf )->toggleVisible(); HelpDialog::getInstance( p_intf )->toggleVisible();
} }
#ifdef UPDATE_CHECK
void DialogsProvider::updateDialog() void DialogsProvider::updateDialog()
{ {
#ifdef UPDATE_CHECK
UpdateDialog::getInstance( p_intf )->toggleVisible(); UpdateDialog::getInstance( p_intf )->toggleVisible();
#endif
} }
#endif
void DialogsProvider::aboutDialog() void DialogsProvider::aboutDialog()
{ {
......
...@@ -146,7 +146,9 @@ public slots: ...@@ -146,7 +146,9 @@ public slots:
void messagesDialog(); void messagesDialog();
void vlmDialog(); void vlmDialog();
void helpDialog(); void helpDialog();
#ifdef UPDATE_CHECK
void updateDialog(); void updateDialog();
#endif
void aboutDialog(); void aboutDialog();
void gotoTimeDialog(); void gotoTimeDialog();
void podcastConfigureDialog(); void podcastConfigureDialog();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment