diff options
author | Kjell Ahlstedt <kjell.ahlstedt@bredband.net> | 2016-12-27 09:53:32 +0100 |
---|---|---|
committer | Kjell Ahlstedt <kjell.ahlstedt@bredband.net> | 2016-12-27 09:53:32 +0100 |
commit | c2b8868e436dd8f1defa3e2660a17f86a6e442d1 (patch) | |
tree | 4477883c83bca9d7d3e0da9bfbbdc186794bff6f | |
parent | 758135aaba5eb29d816dfb899734aa50f764bd42 (diff) | |
download | glibmm-c2b8868e436dd8f1defa3e2660a17f86a6e442d1.tar.gz |
Gio::ActionMap: Fix some trivial documentation bugs
-rw-r--r-- | gio/src/actionmap.hg | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gio/src/actionmap.hg b/gio/src/actionmap.hg index 760a1880..6e59a620 100644 --- a/gio/src/actionmap.hg +++ b/gio/src/actionmap.hg @@ -135,7 +135,7 @@ public: * See add_action_radio_string(). * * For instance, - * void on_slot_activated(const Glib::VariantBase& parameter); + * void on_slot_activated(const Glib::ustring& parameter); */ using ActivateWithStringParameterSlot = sigc::slot<void, const Glib::ustring&>; @@ -161,10 +161,10 @@ public: Glib::RefPtr<SimpleAction> add_action_radio_integer(const Glib::ustring& name, gint32 state); /** A Slot to be called when an action has been activated. - * See add_action_radio_int(). + * See add_action_radio_integer(). * * For instance, - * void on_slot_activated(const Glib::VariantBase& parameter); + * void on_slot_activated(int parameter); */ using ActivateWithIntParameterSlot = sigc::slot<void, int>; |