[glibmm] UnixCredentialMessage, UnixFDMessage: Wrap properties correctly.



commit b281094f08eaf31123eaaa315a169a3f06dce9f9
Author: José Alburquerque <jaalburqu svn gnome org>
Date:   Thu Nov 4 20:16:32 2010 -0400

    	UnixCredentialMessage, UnixFDMessage: Wrap properties correctly.
    
    	* gio/src/unixcredentialsmessage.hg:
    	* gio/src/unixfdmessage.hg: Correct the wrapping of properties (the
    	arguments were interchanged).
    
    	* gio/src/application.hg: Typos.
    	* gio/src/socketconnectable.hg: Refine a TODO.

 ChangeLog                         |   15 +++++++++++++--
 gio/src/application.hg            |    4 ++--
 gio/src/socketconnectable.hg      |    2 +-
 gio/src/unixcredentialsmessage.hg |    2 +-
 gio/src/unixfdmessage.hg          |    2 +-
 5 files changed, 18 insertions(+), 7 deletions(-)
---
diff --git a/ChangeLog b/ChangeLog
index 62ddb03..7ae670a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,9 +1,20 @@
+2010-11-04  José Alburquerque  <jaalburqu svn gnome org>
+
+	UnixCredentialMessage, UnixFDMessage: Wrap properties correctly.
+
+	* gio/src/unixcredentialsmessage.hg:
+	* gio/src/unixfdmessage.hg: Correct the wrapping of properties (the
+	arguments were interchanged).
+
+	* gio/src/application.hg: Typos.
+	* gio/src/socketconnectable.hg: Refine a TODO.
+
 2010-11-03  José Alburquerque  <jaalburqu svn gnome org>
 
 	giomm: Wrap several unwrapped functions.
 
-	* gio/src/memoryoutputstream.hg: Added stream_steal_data(), and a
-	get_data() constant version.
+	* gio/src/memoryoutputstream.hg: Added steal_data(), and a get_data()
+	constant version.
 	* gio/src/networkservice.hg: Added get_scheme(), set_scheme().
 	Wrapped the "scheme" property.
 	* gio/src/socket.{ccg,hg}: Added get_timeout(), set_timeout(),
diff --git a/gio/src/application.hg b/gio/src/application.hg
index d141912..7117548 100644
--- a/gio/src/application.hg
+++ b/gio/src/application.hg
@@ -39,7 +39,7 @@ class ActionGroup;
  * In general, you should not use this class outside of a higher level
  * framework.
  *
- * One of the core features that GApplication provides is process uniqueness,
+ * One of the core features that Application provides is process uniqueness,
  * in the context of a "session". The session concept is platform-dependent,
  * but corresponds roughly to a graphical desktop login. When your application
  * is launched again, its arguments are passed through platform communication
@@ -59,7 +59,7 @@ class ActionGroup;
  * changed using hold() and release(). If it drops to zero, the application
  * exits.
  *
- * GApplication also implements the ActionGroup interface and lets you easily
+ * Application also implements the ActionGroup interface and lets you easily
  * export actions by adding them with set_action_group(). When
  * invoking an action by calling Gio::ActionGroup::activate_action() on the
  * application, it is always invoked in the primary instance.
diff --git a/gio/src/socketconnectable.hg b/gio/src/socketconnectable.hg
index 1e3cb62..e6ad5ad 100644
--- a/gio/src/socketconnectable.hg
+++ b/gio/src/socketconnectable.hg
@@ -46,7 +46,7 @@ public:
   _WRAP_METHOD(Glib::RefPtr<SocketAddressEnumerator> proxy_enumerate(), g_socket_connectable_proxy_enumerate)
   _WRAP_METHOD(Glib::RefPtr<const SocketAddressEnumerator> proxy_enumerate() const, g_socket_connectable_proxy_enumerate, constversion)
 
-  //TODO: Wrap vfuncs.
+  //TODO: Wrap vfuncs?
 };
 
 } // namespace Gio
diff --git a/gio/src/unixcredentialsmessage.hg b/gio/src/unixcredentialsmessage.hg
index aee9433..eb0d3b8 100644
--- a/gio/src/unixcredentialsmessage.hg
+++ b/gio/src/unixcredentialsmessage.hg
@@ -58,7 +58,7 @@ public:
   _WRAP_METHOD(Glib::RefPtr<const Credentials> get_credentials() const, g_unix_credentials_message_get_credentials, constversion)
   _WRAP_METHOD(static bool is_supported(), g_unix_credentials_message_is_supported)
 
-  _WRAP_PROPERTY(Glib::RefPtr<Credentials>, "credentials")
+  _WRAP_PROPERTY("credentials", Glib::RefPtr<Credentials>)
 };
 
 } // namespace Gio
diff --git a/gio/src/unixfdmessage.hg b/gio/src/unixfdmessage.hg
index de08d35..cefb2b1 100644
--- a/gio/src/unixfdmessage.hg
+++ b/gio/src/unixfdmessage.hg
@@ -75,7 +75,7 @@ public:
   Glib::ArrayHandle<int> steal_fds();
   _IGNORE(g_unix_fd_message_steal_fds)
 
-  _WRAP_PROPERTY(Glib::RefPtr<UnixFDList>, "fd-list")
+  _WRAP_PROPERTY("fd-list", Glib::RefPtr<UnixFDList>)
 };
 
 } // namespace Gio



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]