GDBusProxy: Convert docs to markdown

This commit is contained in:
Matthias Clasen 2014-01-31 23:01:13 -05:00
parent 54578e4c34
commit 192ddc0792

View File

@ -364,24 +364,19 @@ g_dbus_proxy_class_init (GDBusProxyClass *klass)
* said to be the "expected interface". * said to be the "expected interface".
* *
* The checks performed are: * The checks performed are:
* <itemizedlist> * - When completing a method call, if the type signature of
* <listitem><para> * the reply message isn't what's expected, the reply is
* When completing a method call, if the type signature of * discarded and the #GError is set to %G_IO_ERROR_INVALID_ARGUMENT.
* the reply message isn't what's expected, the reply is *
* discarded and the #GError is set to %G_IO_ERROR_INVALID_ARGUMENT. * - Received signals that have a type signature mismatch are dropped and
* </para></listitem> * a warning is logged via g_warning().
* <listitem><para> *
* Received signals that have a type signature mismatch are dropped and * - Properties received via the initial <literal>GetAll()</literal> call
* a warning is logged via g_warning(). * or via the <literal>::PropertiesChanged</literal> signal (on the
* </para></listitem> * <ulink url="http://dbus.freedesktop.org/doc/dbus-specification.html#standard-interfaces-properties">org.freedesktop.DBus.Properties</ulink> interface) or
* <listitem><para> * set using g_dbus_proxy_set_cached_property() with a type signature
* Properties received via the initial <literal>GetAll()</literal> call * mismatch are ignored and a warning is logged via g_warning().
* or via the <literal>::PropertiesChanged</literal> signal (on the *
* <ulink url="http://dbus.freedesktop.org/doc/dbus-specification.html#standard-interfaces-properties">org.freedesktop.DBus.Properties</ulink> interface) or
* set using g_dbus_proxy_set_cached_property() with a type signature
* mismatch are ignored and a warning is logged via g_warning().
* </para></listitem>
* </itemizedlist>
* Note that these checks are never done on methods, signals and * Note that these checks are never done on methods, signals and
* properties that are not referenced in the given * properties that are not referenced in the given
* #GDBusInterfaceInfo, since extending a D-Bus interface on the * #GDBusInterfaceInfo, since extending a D-Bus interface on the