We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09501e5 commit 2099296Copy full SHA for 2099296
dunstify.c
@@ -177,7 +177,7 @@ int get_id(NotifyNotification *n)
177
{
178
GValue value = G_VALUE_INIT;
179
g_value_init(&value, G_TYPE_UINT);
180
- g_object_get_property(n, "id", &value);
+ g_object_get_property(G_OBJECT(n), "id", &value);
181
return g_value_get_int(&value);
182
}
183
@@ -186,7 +186,7 @@ void put_id(NotifyNotification *n, guint32 id)
186
187
188
g_value_set_uint(&value, id);
189
- g_object_set_property(n, "id", &value);
+ g_object_set_property(G_OBJECT(n), "id", &value);
190
191
192
void actioned(NotifyNotification *n, char *a, gpointer foo)
0 commit comments