Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 356699
Collapse All | Expand All

(-)a/test/core/my-object.c (-2 / +4 lines)
Lines 859-868 my_object_async_throw_error (MyObject *obj, DBusGMethodInvocation *context) Link Here
859
  g_idle_add ((GSourceFunc) do_async_error,  data);
859
  g_idle_add ((GSourceFunc) do_async_error,  data);
860
}
860
}
861
861
862
void
862
gboolean
863
my_object_unsafe_disable_legacy_property_access (MyObject *obj)
863
my_object_unsafe_disable_legacy_property_access (MyObject *obj,
864
    GError **error)
864
{
865
{
865
  dbus_glib_global_set_disable_legacy_property_access ();
866
  dbus_glib_global_set_disable_legacy_property_access ();
867
  return TRUE;
866
}
868
}
867
869
868
extern GMainLoop *loop;
870
extern GMainLoop *loop;
(-)a/test/core/my-object.h (-2 / +2 lines)
Lines 116-122 void my_object_async_increment (MyObject *obj, gint32 x, DBusGMethodInvocation * Link Here
116
116
117
void my_object_async_throw_error (MyObject *obj, DBusGMethodInvocation *context);
117
void my_object_async_throw_error (MyObject *obj, DBusGMethodInvocation *context);
118
118
119
void my_object_unsafe_disable_legacy_property_access (MyObject *obj);
119
gboolean my_object_unsafe_disable_legacy_property_access (MyObject *obj,
120
    GError **error);
120
121
121
void my_object_emit_objectified (MyObject *obj, GObject *other);
122
void my_object_emit_objectified (MyObject *obj, GObject *other);
122
123
123
- 

Return to bug 356699