summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNick Schermer <nick@xfce.org>2011-04-16 18:09:45 +0200
committerNick Schermer <nick@xfce.org>2011-04-16 18:11:56 +0200
commitc082e6434c664ec9dcd59f021a78ad3781f0d776 (patch)
tree0785073155561dd10c7fd9e91d1bcb7f0f9d5f6c /src
parent66711bfa89f4009d09cb0b36e7a7dc829ecec676 (diff)
downloadxfwm4-c082e6434c664ec9dcd59f021a78ad3781f0d776.tar.gz
Don't use the gvalue twice.
This avoids a console warning that the value is already set as int.
Diffstat (limited to 'src')
-rw-r--r--src/settings.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/settings.c b/src/settings.c
index 78e07c6c7..d4b5aff20 100644
--- a/src/settings.c
+++ b/src/settings.c
@@ -393,6 +393,7 @@ loadTheme (ScreenInfo *screen_info, Settings *rc)
gchar imagename[30];
GValue tmp_val = { 0, };
+ GValue tmp_val2 = { 0, };
DisplayInfo *display_info;
xfwmColorSymbol colsym[ XPM_COLOR_SYMBOL_SIZE + 1 ];
GtkWidget *widget;
@@ -450,11 +451,11 @@ loadTheme (ScreenInfo *screen_info, Settings *rc)
/* ... and distance */
display_info->double_click_distance = abs (getIntValue ("double_click_distance", rc));
- g_value_init (&tmp_val, G_TYPE_INT);
- if (gdk_setting_get ("gtk-double-click-distance", &tmp_val))
+ g_value_init (&tmp_val2, G_TYPE_INT);
+ if (gdk_setting_get ("gtk-double-click-distance", &tmp_val2))
{
- display_info->double_click_distance = abs (g_value_get_int (&tmp_val));
- g_value_unset (&tmp_val);
+ display_info->double_click_distance = abs (g_value_get_int (&tmp_val2));
+ g_value_unset (&tmp_val2);
}
screen_info->font_height = 0;