[glibmm] Gio::DBus::Proxy: Add a TODO.



commit 81fa8a14a45d80ae27bc4055645ebdd952bd3967
Author: Josà Alburquerque <jaalburqu svn gnome org>
Date:   Tue Feb 14 14:26:10 2012 -0500

    Gio::DBus::Proxy: Add a TODO.
    
    	* gio/src/dbusproxy.hg: Add a TODO.
    	* gio/src/filemonitor.hg: Typo.
    	* tools/pm/DocsParser.pm (convert_tags_to_doxygen): Allow <listitem>
    	tags to not be on a line by themselves also (as was done with the
    	<itemizedlist> tag.

 ChangeLog              |   10 ++++++++++
 gio/src/dbusproxy.hg   |    3 +++
 gio/src/filemonitor.hg |    2 +-
 tools/pm/DocsParser.pm |    2 +-
 4 files changed, 15 insertions(+), 2 deletions(-)
---
diff --git a/ChangeLog b/ChangeLog
index f5de7f9..728048c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,15 @@
 2012-02-14  Josà Alburquerque  <jaalburquerque gmail com>
 
+	Gio::DBus::Proxy: Add a TODO.
+
+	* gio/src/dbusproxy.hg: Add a TODO.
+	* gio/src/filemonitor.hg: Typo.
+	* tools/pm/DocsParser.pm (convert_tags_to_doxygen): Allow <listitem>
+	tags to not be on a line by themselves also (as was done with the
+	<itemizedlist> tag.
+
+2012-02-14  Josà Alburquerque  <jaalburquerque gmail com>
+
 	Remove unnecessary signal docs.
 
 	* gio/src/dbusserver.hg:
diff --git a/gio/src/dbusproxy.hg b/gio/src/dbusproxy.hg
index 1b11e0c..d019bd1 100644
--- a/gio/src/dbusproxy.hg
+++ b/gio/src/dbusproxy.hg
@@ -332,6 +332,9 @@ public:
 
   typedef std::map<Glib::ustring, Glib::VariantBase> MapChangedProperties;
 
+  // TODO: Should the signal names match the C API names (ie. the C API names
+  // are g_signal_name while these are just signal_name).
+
   // The DBus API ensures that the variant changed_properties is of type "DICT<STRING,VARIANT>"
   #m4 _CONVERSION(`GVariant*', `const MapChangedProperties&', `Glib::Variant<MapChangedProperties>($3, true).get()')
   #m4 _CONVERSION(`const MapChangedProperties&', `GVariant*', `const_cast<GVariant*>(Glib::Variant<MapChangedProperties>::create($3).gobj())')
diff --git a/gio/src/filemonitor.hg b/gio/src/filemonitor.hg
index c612745..fbbc851 100644
--- a/gio/src/filemonitor.hg
+++ b/gio/src/filemonitor.hg
@@ -36,7 +36,7 @@ class File;
  * File::monitor_directory().
  * 
  * To get informed about changes to the file or directory you are monitoring, 
- * connect to signal_changed.
+ * connect to signal_changed().
  *
  * @newin{2,16}
  */
diff --git a/tools/pm/DocsParser.pm b/tools/pm/DocsParser.pm
index 29d1d1d..443d9b3 100644
--- a/tools/pm/DocsParser.pm
+++ b/tools/pm/DocsParser.pm
@@ -401,7 +401,7 @@ sub convert_tags_to_doxygen($)
 
     # Convert <itemizedlist> tags to Doxygen format.
     s"</?itemizedlist>\n?""g;
-    s"<listitem>(.*?)</listitem>"- $1"sg;
+    s"<listitem>(.*?)(\n?)</listitem>(\n?)"- $1\n"sg;
 
     # Use our Doxygen @newin alias:
     s/\bSince:\s*(\d+)\.(\d+)\b/\ newin{$1,$2}/g;



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