you must be a programmer. I recommend e-mailing google directly. They certainly would know what to do with your e-mail.
On May 15, 10:35 am, Piotr <[EMAIL PROTECTED]> wrote: > I found e.g. bug > inhttp://code.google.com/apis/talk/libjingle/important_concepts.html > page. > > There is. > > class Receiver : public sigslot::has_slots<>{ > > // Receiver registers to get SignalDanger signals. > // When SignalDanger is sent, it is caught by OnDanger(). > // Second parameter gives address of the listener function class > definition. > // First parameter points to instance of this class to receive > notifications. > Receiver(Sender sender){ > sender->SignalDanger.connect(this, &Receiver.OnDanger); > } > > ... > > } > > It should be. > > class Receiver : public sigslot::has_slots<>{ > > // Receiver registers to get SignalDanger signals. > // When SignalDanger is sent, it is caught by OnDanger(). > // Second parameter gives address of the listener function class > definition. > // First parameter points to instance of this class to receive > notifications. > Receiver(Sender sender){ > sender->SignalDanger.connect(this, &Receiver::OnDanger); > } > > ... > > > > }- Hide quoted text - > > - Show quoted text - --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "google-talk-open" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/google-talk-open?hl=en -~----------~----~----~----~------~----~------~--~---
