summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosé Alburquerque <jaalburqu@svn.gnome.org>2010-10-25 23:39:56 -0400
committerJosé Alburquerque <jaalburqu@svn.gnome.org>2010-10-25 23:39:56 -0400
commitec3416ea8866d118b3670fd26a2bfbf0d79433e0 (patch)
tree191c859020cab85c6dfc7f5a08d0e177bbb422c2
parent5f53f9ba141b86955a6d379e71c11f3c6850b3c6 (diff)
downloadglibmm-ec3416ea8866d118b3670fd26a2bfbf0d79433e0.tar.gz
AsyncInitable: Add create_finish() wrapping an unwrapped function.
* gio/src/asyncinitable.hg: Add create_finish() wrapping g_async_initable_new_finish(). Its not clear how useful the method will be, but at least gmmproc does not say that it is still unwrapped. * gio/src/dbusproxy.hg: Typo.
-rw-r--r--ChangeLog9
-rw-r--r--gio/src/asyncinitable.hg2
-rw-r--r--gio/src/dbusproxy.hg2
3 files changed, 12 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 1c36025c..f17ae360 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2010-10-25 José Alburquerque <jaalburqu@svn.gnome.org>
+
+ AsyncInitable: Add create_finish() wrapping an unwrapped function.
+
+ * gio/src/asyncinitable.hg: Add create_finish() wrapping
+ g_async_initable_new_finish(). Its not clear how useful the method
+ will be, but at least gmmproc does not say that it is still unwrapped.
+ * gio/src/dbusproxy.hg: Typo.
+
2010-10-21 Murray Cumming <murrayc@murrayc-desktop>
Added get_system_data_dirs() and get_system_config_dirs().
diff --git a/gio/src/asyncinitable.hg b/gio/src/asyncinitable.hg
index 68f66d5d..eca9bd2b 100644
--- a/gio/src/asyncinitable.hg
+++ b/gio/src/asyncinitable.hg
@@ -127,6 +127,8 @@ protected:
_WRAP_METHOD(bool init_finish(const Glib::RefPtr<AsyncResult>& result), g_async_initable_init_finish, errthrow)
+ _WRAP_METHOD(Glib::RefPtr<Glib::Object> create_finish(const Glib::RefPtr<AsyncResult>& res), g_async_initable_new_finish, errthrow)
+
virtual void init_async_vfunc(const SlotAsyncReady& slot,
const Glib::RefPtr<Cancellable>& cancellable,
int io_priority = Glib::PRIORITY_DEFAULT);
diff --git a/gio/src/dbusproxy.hg b/gio/src/dbusproxy.hg
index 87d29013..8e9fec68 100644
--- a/gio/src/dbusproxy.hg
+++ b/gio/src/dbusproxy.hg
@@ -124,7 +124,7 @@ public:
*/
_WRAP_METHOD(static Glib::RefPtr<DBusProxy> create_for_bus_finish(const Glib::RefPtr<AsyncResult>& result), g_dbus_proxy_new_for_bus_finish, errthrow)
- _WRAP_METHOD_DOCS_ONLY(g_dbus_proxy_new__for_bus_sync)
+ _WRAP_METHOD_DOCS_ONLY(g_dbus_proxy_new_for_bus_sync)
static Glib::RefPtr<DBusProxy>
create_for_bus(BusType bus_type, DBusProxyFlags flags,
const Glib::RefPtr<DBusInterfaceInfo>& info, const Glib::ustring& name,