Avoid naming an identifier 'boolean' which is used in Win32 headers
This commit is contained in:
parent
abccaf02da
commit
8a5c9eba8b
1 changed files with 3 additions and 3 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue