File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 44
44
* see that adaptors are implemented like they are because
45
45
* there is no way to extract the return type and the argument
46
46
* types from a functor type. Therefore, operator() is templated.
47
- * It's instatiated in slot_call#<>::operator() where the
47
+ * It's instantiated in slot_call#<>::operator() where the
48
48
* argument types are known. The return type is finally determined
49
49
* via the callof<> template - a tricky way to detect the return
50
50
* type of a functor when the argument types are known. Martin.
Original file line number Diff line number Diff line change 24
24
namespace sigc
25
25
{
26
26
27
- /* * Convinience class for safe disconnection.
27
+ /* * Convenience class for safe disconnection.
28
28
* Iterators must not be used beyond the lifetime of the list
29
29
* they work on. A connection object can be created from a
30
30
* slot list iterator and may safely be used to disconnect
Original file line number Diff line number Diff line change @@ -336,7 +336,7 @@ class SIGC_API slot_base
336
336
*/
337
337
void set_parent (notifiable* parent, notifiable::func_destroy_notify cleanup) const noexcept ;
338
338
339
- /* * Add a callback that is executed (notified) when the slot is detroyed .
339
+ /* * Add a callback that is executed (notified) when the slot is destroyed .
340
340
* This function is used internally by connection objects.
341
341
* @param data Passed into func upon notification.
342
342
* @param func Callback executed upon destruction of the object.
Original file line number Diff line number Diff line change @@ -190,7 +190,7 @@ signal_impl::notify_self_and_iter_of_invalidated_slot(notifiable* d)
190
190
}
191
191
else
192
192
{
193
- // This is occuring during signal emission or slot erasure.
193
+ // This is occurring during signal emission or slot erasure.
194
194
// => sweep() will be called from ~signal_impl_holder() after signal emission.
195
195
// This is safer because we don't have to care about our
196
196
// iterators in emit(), clear(), and erase().
You can’t perform that action at this time.
0 commit comments