From 8a5c9eba8bc788b0d21769672ef94e991feb891c Mon Sep 17 00:00:00 2001 From: Christian Dywan Date: Wed, 17 Jun 2009 23:39:50 +0200 Subject: [PATCH] Avoid naming an identifier 'boolean' which is used in Win32 headers --- midori/main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/midori/main.c b/midori/main.c index eeaa8b20..435113e9 100644 --- a/midori/main.c +++ b/midori/main.c @@ -220,9 +220,9 @@ settings_save_to_file (MidoriWebSettings* settings, } else if (type == G_TYPE_PARAM_BOOLEAN) { - gboolean boolean; - g_object_get (settings, property, &boolean, NULL); - g_key_file_set_boolean (key_file, "settings", property, boolean); + gboolean truth; + g_object_get (settings, property, &truth, NULL); + g_key_file_set_boolean (key_file, "settings", property, truth); } else if (type == G_TYPE_PARAM_ENUM) { -- 2.39.5