[maemo-commits] [maemo-commits] r16303 - projects/haf/trunk/hildon-control-panel/src
From: subversion at stage.maemo.org subversion at stage.maemo.orgDate: Tue Sep 30 23:00:26 EEST 2008
- Previous message: [maemo-commits] r16302 - projects/haf/tags/gvfs
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Author: paradi Date: 2008-09-30 23:00:24 +0300 (Tue, 30 Sep 2008) New Revision: 16303 Modified: projects/haf/trunk/hildon-control-panel/src/hcp-main.c Log: 2008-09-30 Peter Aradi <peter.aradi at blumsoft.eu> * src/hcp-main.c: gtk_init() was called before g_thread_init() Fixes NB #86237. Modified: projects/haf/trunk/hildon-control-panel/src/hcp-main.c =================================================================== --- projects/haf/trunk/hildon-control-panel/src/hcp-main.c 2008-09-30 17:49:19 UTC (rev 16302) +++ projects/haf/trunk/hildon-control-panel/src/hcp-main.c 2008-09-30 20:00:24 UTC (rev 16303) @@ -48,10 +48,10 @@ textdomain (PACKAGE); /* Initialize before calling any glib function */ + if (!g_thread_supported ()) g_thread_init (NULL); + gtk_init (&argc, &argv); - if (!g_thread_supported ()) g_thread_init (NULL); - gnome_vfs_init (); /* Set application name to "" as we only need
- Previous message: [maemo-commits] r16302 - projects/haf/tags/gvfs
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]