- Fix loading empty preference keys http://sourceforge.net/tracker/index.php?func=detail&aid=917661&group_id=88198&atid=585816 - Do not load ~/.gtkrc http://sourceforge.net/tracker/index.php?func=detail&aid=883617&group_id=88198&atid=585814 via FreeBSD ports Bump PKGREVISION to 3
26 lines
766 B
Text
26 lines
766 B
Text
$NetBSD: patch-aa,v 1.1 2004/06/01 17:07:09 recht Exp $
|
|
|
|
--- src/main.c.orig Sun Apr 18 17:22:45 2004
|
|
+++ src/main.c Sun Apr 18 17:23:11 2004
|
|
@@ -194,21 +194,6 @@
|
|
|
|
srandom((gint)time(NULL));
|
|
|
|
- /* parse gtkrc files */
|
|
- userrc = g_strconcat(get_home_dir(), G_DIR_SEPARATOR_S, ".gtkrc",
|
|
- NULL);
|
|
- gtk_rc_parse(userrc);
|
|
- g_free(userrc);
|
|
- userrc = g_strconcat(get_home_dir(), G_DIR_SEPARATOR_S, ".gtk",
|
|
- G_DIR_SEPARATOR_S, "gtkrc", NULL);
|
|
- gtk_rc_parse(userrc);
|
|
- g_free(userrc);
|
|
- userrc = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S, "gtkrc", NULL);
|
|
- gtk_rc_parse(userrc);
|
|
- g_free(userrc);
|
|
-
|
|
- gtk_rc_parse("./gtkrc");
|
|
-
|
|
userrc = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S, MENU_RC, NULL);
|
|
gtk_accel_map_load (userrc);
|
|
g_free(userrc);
|