I found e.g. bug in 
http://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);
  }

      ...
}


--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to