summaryrefslogtreecommitdiff
path: root/gio/src/liststore.hg
diff options
context:
space:
mode:
authorMurray Cumming <murrayc@murrayc.com>2016-03-31 12:52:18 +0200
committerMurray Cumming <murrayc@murrayc.com>2016-11-14 10:43:21 +0100
commit0ca323351606b0fa2f8519155a3edd0cc6a51805 (patch)
treeaa6c49839339fba57c32a8be1382751cfff8802a /gio/src/liststore.hg
parentde11e59c1f275556e73e4747e8ba75763dac9045 (diff)
downloadglibmm-0ca323351606b0fa2f8519155a3edd0cc6a51805.tar.gz
sigc3: .hg/.ccg files: Use sigc::slot<R(Args...)> syntax.
Diffstat (limited to 'gio/src/liststore.hg')
-rw-r--r--gio/src/liststore.hg4
1 files changed, 2 insertions, 2 deletions
diff --git a/gio/src/liststore.hg b/gio/src/liststore.hg
index 840d7397..2b3af6cf 100644
--- a/gio/src/liststore.hg
+++ b/gio/src/liststore.hg
@@ -63,7 +63,7 @@ public:
*
* @newin{2,50}
*/
- using SlotCompare = sigc::slot<int, const Glib::RefPtr<const Glib::ObjectBase>&, const Glib::RefPtr<const Glib::ObjectBase>&>;
+ using SlotCompare = sigc::slot<int(const Glib::RefPtr<const Glib::ObjectBase>&, const Glib::RefPtr<const Glib::ObjectBase>&)>;
_WRAP_METHOD(guint insert_sorted(const Glib::RefPtr<Glib::ObjectBase>& item,
const SlotCompare& slot{compare_func}), g_list_store_insert_sorted,
@@ -175,7 +175,7 @@ public:
*
* @newin{2,50}
*/
- using SlotCompare = sigc::slot<int, const Glib::RefPtr<const T_item>&, const Glib::RefPtr<const T_item>&>;
+ using SlotCompare = sigc::slot<int(const Glib::RefPtr<const T_item>&, const Glib::RefPtr<const T_item>&)>;
/** Inserts @a item at a position to be determined by the @a slot.
*