File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 143
143
signal_impl::add_notification_to_iter (const signal_impl::iterator_type& iter)
144
144
{
145
145
auto si = new self_and_iter (this , iter);
146
- iter->set_parent (si, &signal_impl::notify_self_and_iter_invalidated );
146
+ iter->set_parent (si, &signal_impl::notify_self_and_iter_of_invalidated_slot );
147
147
}
148
148
149
149
signal_impl::iterator_type
@@ -183,7 +183,7 @@ signal_impl::sweep()
183
183
184
184
// static
185
185
void
186
- signal_impl::notify_self_and_iter_invalidated (notifiable* d)
186
+ signal_impl::notify_self_and_iter_of_invalidated_slot (notifiable* d)
187
187
{
188
188
std::unique_ptr<self_and_iter> si (static_cast <self_and_iter*>(d));
189
189
Original file line number Diff line number Diff line change @@ -175,7 +175,7 @@ struct SIGC_API signal_impl : public notifiable
175
175
* erase() to sweep() when the signal is being emitted.
176
176
* @param d A local structure, created in insert().
177
177
*/
178
- static void notify_self_and_iter_invalidated (notifiable* d);
178
+ static void notify_self_and_iter_of_invalidated_slot (notifiable* d);
179
179
180
180
void add_notification_to_iter (const signal_impl::iterator_type& iter);
181
181
You can’t perform that action at this time.
0 commit comments