summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMurray Cumming <murrayc@murrayc.com>2013-09-03 21:34:36 +0200
committerMurray Cumming <murrayc@murrayc.com>2013-09-03 21:34:46 +0200
commitd4f5a4e12838fac34b149ea1315036d2eefdc367 (patch)
tree2ac928cb43425a85a1d314ca8c0934c3ed8b0e20
parentfc14e6c03db879bc3e0a7bac353c76948f482c10 (diff)
downloadglibmm-d4f5a4e12838fac34b149ea1315036d2eefdc367.tar.gz
Link to a bug from a TODO comment
-rw-r--r--gio/src/simpleaction.hg6
1 files changed, 3 insertions, 3 deletions
diff --git a/gio/src/simpleaction.hg b/gio/src/simpleaction.hg
index 30f7ad96..20a240d3 100644
--- a/gio/src/simpleaction.hg
+++ b/gio/src/simpleaction.hg
@@ -80,7 +80,7 @@ public:
*/
_WRAP_CREATE(const Glib::ustring& name, const Glib::VariantBase& state)
- //TODO: Use similar C API if they ever add it. Doing this manually is tedious.
+ //TODO: Use similar C API if they ever add it. Doing this manually is tedious. See https://bugzilla.gnome.org/show_bug.cgi?id=705655
//TODO: Create a derived SimpleToggleAction class for this?
//TODO: Document how the app must handle signal_activate() to call change_state().
/** Creates a new boolean stateful action.
@@ -95,7 +95,7 @@ public:
*/
static Glib::RefPtr<SimpleAction> create_bool(const Glib::ustring&name, bool state = false);
- //TODO: Use similar C API if they ever add it. Doing this manually is tedious.
+ //TODO: Use similar C API if they ever add it. Doing this manually is tedious. See https://bugzilla.gnome.org/show_bug.cgi?id=705655
//TODO: Create a derived SimpleToggleAction class for this?
//TODO: Create convenience API that auto-changes the state, like Gtk::TreeView's append_column_editable()?
// See https://bugzilla.gnome.org/show_bug.cgi?id=705133 (it's not documented clearly at all).
@@ -109,7 +109,7 @@ public:
*/
static Glib::RefPtr<SimpleAction> create_radio_string(const Glib::ustring& name, const Glib::ustring& initial_state);
- //TODO: Use similar C API if they ever add it. Doing this manually is tedious.
+ //TODO: Use similar C API if they ever add it. Doing this manually is tedious. See https://bugzilla.gnome.org/show_bug.cgi?id=705655
//TODO: Create a derived SimpleToggleAction class for this?
//TODO: Create convenience API that auto-changes the state, like Gtk::TreeView's append_column_editable()?
// See https://bugzilla.gnome.org/show_bug.cgi?id=705133 (it's not documented clearly at all).