@@ -41,13 +41,13 @@ using hook = void* (*)(void*);
41
41
* The base class slot_rep serves the purpose to
42
42
* - form a common pointer type (slot_rep*),
43
43
* - offer the possibility to create duplicates (clone()),
44
- * - offer a notification callback (notify ()),
44
+ * - offer a notification callback (notify_slot_rep_invalidated ()),
45
45
* - implement some of slot_base's interface that depends
46
46
* on the notification callback, i.e.
47
47
* -# the possibility to set a single parent with a callback
48
- * (set_parent()) that is executed from notify (),
48
+ * (set_parent()) that is executed from notify_slot_rep_invalidated (),
49
49
* -# a generic function pointer, call_, that is simply
50
- * set to zero in notify () to invalidate the slot.
50
+ * set to zero in notify_slot_rep_invalidated () to invalidate the slot.
51
51
*
52
52
* slot_rep inherits trackable so that connection objects can
53
53
* refer to the slot and are notified when the slot is destroyed.
@@ -93,7 +93,7 @@ struct SIGC_API slot_rep : public trackable
93
93
/* * Set the parent with a callback.
94
94
* slots have one parent exclusively.
95
95
* @param parent The new parent.
96
- * @param cleanup The callback to execute from notify ().
96
+ * @param cleanup The callback to execute from notify_slot_rep_invalidated ().
97
97
*/
98
98
inline void set_parent (notifiable* parent, notifiable::func_destroy_notify cleanup) noexcept
99
99
{
@@ -138,7 +138,7 @@ struct SIGC_API slot_rep : public trackable
138
138
};
139
139
140
140
/* * Functor used to add a dependency to a trackable.
141
- * Consequently slot_rep::notify () gets executed when the
141
+ * Consequently slot_rep::notify_slot_rep_invalidated () gets executed when the
142
142
* trackable is destroyed or overwritten.
143
143
*/
144
144
struct SIGC_API slot_do_bind
0 commit comments