comparison src/gtkmain.c @ 12202:17be9401e167

[gaim-migrate @ 14504] This way the file that the gaimrc plugin writes will actually get used by gaim for settings. And with this commit I'm off for Thanksgiving. Later all. committer: Tailor Script <tailor@pidgin.im>
author Etan Reisner <pidgin@unreliablesource.net>
date Wed, 23 Nov 2005 22:00:19 +0000
parents c4c612b8a648
children b7a51e68d0b8
comparison
equal deleted inserted replaced
12201:6f0254e3c4a0 12202:17be9401e167
523 if (sigprocmask(SIG_UNBLOCK, &sigset, NULL)) { 523 if (sigprocmask(SIG_UNBLOCK, &sigset, NULL)) {
524 snprintf(errmsg, BUFSIZ, "Warning: couldn't unblock signals"); 524 snprintf(errmsg, BUFSIZ, "Warning: couldn't unblock signals");
525 perror(errmsg); 525 perror(errmsg);
526 } 526 }
527 #endif 527 #endif
528
529 search_path = g_build_filename(gaim_user_dir(), "gtkrc-2.0", NULL);
530 gtk_rc_add_default_file(search_path);
531 g_free(search_path);
528 532
529 gui_check = gtk_init_check(&argc, &argv); 533 gui_check = gtk_init_check(&argc, &argv);
530 if (!gui_check) { 534 if (!gui_check) {
531 char *display = gdk_get_display(); 535 char *display = gdk_get_display();
532 536