2.27.4:
2010-11-30 José Alburquerque <
[email protected]>
DBus[MethodInvocation|Server]: Code corrections.
* gio/src/dbusmethodinvocation.hg: Remove the default constructor
because it probably will not be used (there is no create() method to
go along with it).
* gio/src/dbusserver.{ccg,hg} (create_sync): Use
g_dbus_server_new_sync() instead of the constructors because the C
function does more than call g_initable_new().
2010-11-22 José Alburquerque <
[email protected]>
gmmproc: Some conversion fixes.
* tools/pm/DocsParser.pm (convert_docs_to_cpp): Convert occurances of
'`' to the variable '__BT__' defined in base.m4 which safely produces
the same character without causing M4 processing errors.
(convert_tags_to_doxygen): Add a substition for the
<constant></constant> gtk-doc tag to the equivalent Doxygen <tt></tt>
tag. Also use '<' instead of '<' and '>' instead of '>' in the
substitutions because otherwise the tags are not recognized.
2010-11-22 José Alburquerque <
[email protected]>
Gio::DBusConnection: Add emit_signal().
* gio/src/dbusconnection.{ccg,hg}: Add emit_signal() wrapping
g_dbus_connection_emit_signal().
* gio/src/dbusaddress.ccg: Typo.
2010-11-19 José Alburquerque <
[email protected]>
Gio::DBus::Address: Wrap the gio dbus address API in this namespace.
* gio/giomm.h:
* gio/src/dbusaddress.{ccg,hg}:
* gio/src/filelist.am: Add new sources and make sure they are built.
* gio/src/dbusconnection.hg:
* gio/src/dbuserror.hg: Typos.
2010-11-16 José Alburquerque <
[email protected]>
DBusConnection: Add call(), call_finish() and call_sync() methods.
* gio/src/dbusconnection.{ccg,hg}: Add cancellable and non-cancellable
versions of call() and call_sync(). Also added call_finish().