summaryrefslogtreecommitdiff
path: root/glib/glibmm/signalproxy_connectionnode.h
diff options
context:
space:
mode:
Diffstat (limited to 'glib/glibmm/signalproxy_connectionnode.h')
-rw-r--r--glib/glibmm/signalproxy_connectionnode.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/glib/glibmm/signalproxy_connectionnode.h b/glib/glibmm/signalproxy_connectionnode.h
index 0dd84a80..e0a8f5eb 100644
--- a/glib/glibmm/signalproxy_connectionnode.h
+++ b/glib/glibmm/signalproxy_connectionnode.h
@@ -32,12 +32,16 @@ namespace Glib
{
/** SignalProxyConnectionNode is a connection node for use with SignalProxy.
- * It lives between the layer of Gtk+ and SigC++.
+ * It lives between the layer of Gtk+ and libsigc++.
* It is very much an internal class.
*/
class SignalProxyConnectionNode
{
public:
+
+ /** @param slot The signal handler for the GTK+ signal.
+ *
+ */
SignalProxyConnectionNode(const sigc::slot_base& slot, GObject* gobject);
/** Callback that is executed when the slot becomes invalid.
@@ -50,7 +54,7 @@ public:
* @param data The SignalProxyConnectionNode object (@p this).
* @param closure The glib closure object.
*/
- static void destroy_notify_handler(gpointer data, GClosure *closure);
+ static void destroy_notify_handler(gpointer data, GClosure* closure);
gulong connection_id_;
sigc::slot_base slot_;