1
mirror of https://code.videolan.org/videolan/vlc synced 2024-07-21 07:24:15 +02:00

Don't clutter REGISTRY on windows...

Using the registry when we can avoid it is a wrong idea, IMHO.
Easier to delete when you delete %appdata%/vlc
This commit is contained in:
Jean-Baptiste Kempf 2008-08-01 13:27:54 -07:00
parent d6abd400bf
commit d727c4590f

View File

@ -324,7 +324,14 @@ static void Init( intf_thread_t *p_intf )
QApplication *app = new QApplication( argc, argv , true );
p_intf->p_sys->p_app = app;
p_intf->p_sys->mainSettings = new QSettings( "vlc", "vlc-qt-interface" );
p_intf->p_sys->mainSettings = new QSettings(
#ifdef WIN32
QSettings::IniFormat,
#else
QSettings::NativeFormat,
#endif
QSettings::UserScope, "vlc", "vlc-qt-interface" );
/* Icon setting
FIXME: use a bigger icon ? */
if( QDate::currentDate().dayOfYear() >= 354 )