mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 03:44:02 +02:00
made nodeKilled signatures match
This commit is contained in:
parent
760627003f
commit
decd6109fb
2 changed files with 2 additions and 2 deletions
|
@ -50,6 +50,6 @@ bool ReceivedPacketProcessor::process() {
|
|||
return isStillRunning(); // keep running till they terminate us
|
||||
}
|
||||
|
||||
void ReceivedPacketProcessor::nodeKilled(const SharedNodePointer& node) {
|
||||
void ReceivedPacketProcessor::nodeKilled(SharedNodePointer node) {
|
||||
int numRemoved = _nodePacketCounts.remove(node->getUUID());
|
||||
}
|
||||
|
|
|
@ -42,7 +42,7 @@ public:
|
|||
int packetsToProcessCount() const { return _packets.size(); }
|
||||
|
||||
public slots:
|
||||
void nodeKilled(const SharedNodePointer& node);
|
||||
void nodeKilled(SharedNodePointer node);
|
||||
|
||||
protected:
|
||||
/// Callback for processing of recieved packets. Implement this to process the incoming packets.
|
||||
|
|
Loading…
Reference in a new issue