aboutsummaryrefslogtreecommitdiff
path: root/src/prefs.c
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-07-14 10:02:45 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-07-14 10:02:45 +0000
commitefd58f003e08eb948ad552aa5e4868c6fb66f5ad (patch)
tree39cbd0705462db30ad1a8ec17eb81d301a6085ba /src/prefs.c
parent0a225a160c2d521b8062bfc702c33b65f520e081 (diff)
made 2.0.0beta6 release.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@433 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src/prefs.c')
-rw-r--r--src/prefs.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/prefs.c b/src/prefs.c
index 973e7f1f..6dfc275f 100644
--- a/src/prefs.c
+++ b/src/prefs.c
@@ -567,10 +567,11 @@ void prefs_set_dialog_to_default(PrefParam *param)
switch (tmpparam.type) {
case P_STRING:
-#warning FIXME_GTK2
if (tmpparam.defval) {
- if (!g_ascii_strncasecmp(tmpparam.defval, "ENV_", 4)) {
- str_data = g_strdup(g_getenv(param[i].defval + 4));
+ if (!g_ascii_strncasecmp
+ (tmpparam.defval, "ENV_", 4)) {
+ str_data = g_strdup
+ (g_getenv(param[i].defval + 4));
tmpparam.data = &str_data;
break;
} else if (tmpparam.defval[0] == '~') {