Use the correct 'g-properties-changed' signal

This commit is contained in:
Stef Walter 2012-06-27 16:43:37 +02:00
parent 5e73621f40
commit d9ec34322d

View File

@ -349,7 +349,7 @@ process_get_all_reply (GDBusProxy *proxy,
g_variant_iter_free (iter); g_variant_iter_free (iter);
g_variant_get (retval, "(@a{sv})", &changed_properties); g_variant_get (retval, "(@a{sv})", &changed_properties);
g_signal_emit_by_name (proxy, "properties-changed", g_signal_emit_by_name (proxy, "g-properties-changed",
changed_properties, invalidated_properties); changed_properties, invalidated_properties);
g_variant_unref (changed_properties); g_variant_unref (changed_properties);
} }