Commit 5e87283e authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt4 - Updates: actually call the udpater when needed. Part 3

parent 2f20315a
......@@ -35,6 +35,7 @@
#include "dialogs_provider.hpp"
#include "input_manager.hpp"
#include "main_interface.hpp"
#include "dialogs/help.hpp" /* update */
#ifdef HAVE_X11_XLIB_H
#include <X11/Xlib.h>
......@@ -351,13 +352,14 @@ static void Init( intf_thread_t *p_intf )
QSettings settings( "vlc", "vlc-qt-interface" );
if( QDate::currentDate() > settings.value( "updatedate" ).toDate().addDays( interval ) )
{
msg_Dbg( p_intf, "Someone said I need to update" );
//FIXME Call the updater.
msg_Dbg( p_intf, "Someone said I need to check updates" );
/* The constructor of the update Dialog will do the 1st request */
UpdateDialog::getInstance( p_intf );
settings.setValue( "updatedate", QDate::currentDate() );
}
}
#endif
/* Launch */
app->exec();
......
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