summaryrefslogtreecommitdiff
path: root/mate-dictionary/libgdict/gdict-client-context.c
diff options
context:
space:
mode:
authorrbuj <[email protected]>2021-12-21 09:51:20 +0100
committerraveit65 <[email protected]>2022-02-11 17:35:28 +0100
commit651b22791ed39fc3b9e5634c14db629e88cc15bf (patch)
treed2156aa562b5a7216cafdbffbda77fbf9a83df26 /mate-dictionary/libgdict/gdict-client-context.c
parent06fa4ba1d6259f63a34268b9cac3de1ed464b935 (diff)
downloadmate-utils-651b22791ed39fc3b9e5634c14db629e88cc15bf.tar.bz2
mate-utils-651b22791ed39fc3b9e5634c14db629e88cc15bf.tar.xz
dict: implicit conversion changes signedness: 'gboolean' to 'guint'
Diffstat (limited to 'mate-dictionary/libgdict/gdict-client-context.c')
-rw-r--r--mate-dictionary/libgdict/gdict-client-context.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mate-dictionary/libgdict/gdict-client-context.c b/mate-dictionary/libgdict/gdict-client-context.c
index 7d42d5fd..8bc9cbcd 100644
--- a/mate-dictionary/libgdict/gdict-client-context.c
+++ b/mate-dictionary/libgdict/gdict-client-context.c
@@ -419,7 +419,7 @@ gdict_client_context_set_property (GObject *object,
priv->client_name = g_strdup (g_value_get_string (value));
break;
case GDICT_CONTEXT_PROP_LOCAL_ONLY:
- priv->local_only = g_value_get_boolean (value);
+ priv->local_only = (g_value_get_boolean (value) != FALSE);
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);