Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNickolay V. Shmyrev <nshmyrev@src.gnome.org>2006-06-01 14:41:11 (GMT)
committer Nickolay V. Shmyrev <nshmyrev@src.gnome.org>2006-06-01 14:41:11 (GMT)
commitb7aea854321f7b89d4acd4c39398726299641192 (patch)
tree17460881d9f1cbc5815b03cf2176fc2988f35d45
parent35c8c7294be9212b547f90ec01a6ba8228560585 (diff)
Call gdk_threads_init. Thus we'll avoid errors in auth dialog. Fix for the
* shell/main.c: (main): Call gdk_threads_init. Thus we'll avoid errors in auth dialog. Fix for the bug #343347.
-rw-r--r--ChangeLog6
-rw-r--r--shell/main.c4
2 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 3e92ea5..ae27296 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2006-06-01 Nickolay V. Shmyrev <<nshmyrev@yandex.ru>>
+
+ * shell/main.c: (main): Call gdk_threads_init. Thus
+ we'll avoid errors in auth dialog. Fix for the bug
+ #343347.
+
2006-06-01 Wouter Bolsterlee <uws+gnome@xs4all.nl>
* configure.ac: Advertise pixbuf support, fix
diff --git a/shell/main.c b/shell/main.c
index c86ae23..1f3da85 100644
--- a/shell/main.c
+++ b/shell/main.c
@@ -250,10 +250,10 @@ main (int argc, char *argv[])
enable_metadata = TRUE;
}
#endif
-
+
+ gdk_threads_init ();
gnome_authentication_manager_init ();
-
if (enable_metadata) {
ev_metadata_manager_init ();
}