gdbus-codegen: Use (skip) annotation on return values
authorDavid Zeuthen <davidz@redhat.com>
Fri, 13 May 2011 18:23:14 +0000 (14:23 -0400)
committerDavid Zeuthen <davidz@redhat.com>
Fri, 13 May 2011 18:24:22 +0000 (14:24 -0400)
This was discussed in bug 649657.

https://bugzilla.gnome.org/show_bug.cgi?id=649657

Signed-off-by: David Zeuthen <davidz@redhat.com>
gio/gdbus-codegen/codegen.py

index 3df0f5e..6a5620f 100644 (file)
@@ -1268,7 +1268,7 @@ class CodeGenerator:
                     ' *\n'
                     ' * Finishes an operation started with %s_call_%s().\n'
                     ' *\n'
-                    ' * Returns: %%TRUE if the call succeded, %%FALSE if @error is set.\n'
+                    ' * Returns: (skip): %%TRUE if the call succeded, %%FALSE if @error is set.\n'
                     %(i.name_lower, m.name_lower, i.name_lower, m.name_lower)))
             self.write_gtkdoc_deprecated_and_since_and_close(m, self.c, 0)
             self.c.write('gboolean\n'
@@ -1316,7 +1316,7 @@ class CodeGenerator:
                     ' *\n'
                     ' * See %s_call_%s() for the asynchronous version of this method.\n'
                     ' *\n'
-                    ' * Returns: %%TRUE if the call succeded, %%FALSE if @error is set.\n'
+                    ' * Returns: (skip): %%TRUE if the call succeded, %%FALSE if @error is set.\n'
                     %(i.name, m.name, i.name_lower, m.name_lower)))
             self.write_gtkdoc_deprecated_and_since_and_close(m, self.c, 0)
             self.c.write('gboolean\n'