summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog11
-rw-r--r--gio/src/action.hg2
-rw-r--r--gio/src/application.hg6
-rw-r--r--gio/src/applicationcommandline.hg3
-rw-r--r--gio/src/simpleaction.hg2
-rw-r--r--gio/src/simpleactiongroup.hg2
6 files changed, 19 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index 4b20a1ac..8401bf20 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,16 @@
2011-10-10 José Alburquerque <jaalburqu@svn.gnome.org>
+ Application, {,Simple}Action{,Group}: Update @newins{}'s.
+
+ * gio/src/action.hg:
+ * gio/src/application.hg:
+ * gio/src/simpleaction.hg:
+ * gio/src/simpleactiongroup.hg:
+
+ * gio/src/applicationcommandline.hg: Add bug URL to a TODO.
+
+2011-10-10 José Alburquerque <jaalburqu@svn.gnome.org>
+
ApplicationCommandLine: Update a TODO.
* gio/src/applicationcommandline.hg:
diff --git a/gio/src/action.hg b/gio/src/action.hg
index 3d92bfe2..3ac61ca2 100644
--- a/gio/src/action.hg
+++ b/gio/src/action.hg
@@ -60,7 +60,7 @@ namespace Gio
* Probably the only useful thing to do with a Action is to put it inside of a
* SimpleActionGroup.
*
- * @newin{2,30}
+ * @newin{2,32}
*/
class Action : public Glib::Interface
{
diff --git a/gio/src/application.hg b/gio/src/application.hg
index 571042ec..40acf227 100644
--- a/gio/src/application.hg
+++ b/gio/src/application.hg
@@ -76,7 +76,7 @@ class ActionGroup;
*
* See the C API docs for an example.
*
- * @newin{2,28}
+ * @newin{2,32}
*/
class Application : public Glib::Object
{
@@ -132,7 +132,7 @@ public:
* @param files The files to open. This must be non-empty.
* @param hint A hint.
*
- * @newin{2,28}
+ * @newin{2,32}
*/
void open(const type_vec_files& files, const Glib::ustring& hint = Glib::ustring());
_IGNORE(g_application_open)
@@ -152,7 +152,7 @@ public:
* @param file The file to open. This must be non-empty.
* @param hint A hint.
*
- * @newin{2,28}
+ * @newin{2,32}
*/
void open(const Glib::RefPtr<Gio::File>& file, const Glib::ustring& hint = Glib::ustring());
diff --git a/gio/src/applicationcommandline.hg b/gio/src/applicationcommandline.hg
index 316d3279..785e02e8 100644
--- a/gio/src/applicationcommandline.hg
+++ b/gio/src/applicationcommandline.hg
@@ -49,7 +49,8 @@ public:
//TODO: gmmproc cannot parse the function declaration because the return type
//has a comma (see Function::on_wrap_method()'s call to
- //string_split_commas()). Bug #661401 fixes that.
+ //string_split_commas()). Bug #661401 fixes that:
+ //https://bugzilla.gnome.org/show_bug.cgi?id=661401
//#m4 _CONVERSION(`GVariant*',`Glib::Variant< std::map<Glib::ustring, Glib::VariantBase> >',`$2($3)')
//_WRAP_METHOD(Glib::Variant< std::map<Glib::ustring, Glib::VariantBase> > get_platform_data() const, g_application_command_line_get_platform_data)
diff --git a/gio/src/simpleaction.hg b/gio/src/simpleaction.hg
index cf1292e5..4172ebdc 100644
--- a/gio/src/simpleaction.hg
+++ b/gio/src/simpleaction.hg
@@ -36,7 +36,7 @@ namespace Gio
*
* See also Gtk::Action.
*
- * @newin{2,30}
+ * @newin{2,32}
*/
class SimpleAction : public Glib::Object, public Action
{
diff --git a/gio/src/simpleactiongroup.hg b/gio/src/simpleactiongroup.hg
index e9596e35..338bb342 100644
--- a/gio/src/simpleactiongroup.hg
+++ b/gio/src/simpleactiongroup.hg
@@ -30,7 +30,7 @@ class Action;
* SimpleActionGroup is a hash table filled with Action objects, implementing
* the ActionGroup interface.
*
- * @newin{2,30}
+ * @newin{2,32}
*/
class SimpleActionGroup : public Glib::Object, public ActionGroup
{