mirror of
https://github.com/overte-org/overte.git
synced 2025-08-06 19:59:28 +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
|
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());
|
int numRemoved = _nodePacketCounts.remove(node->getUUID());
|
||||||
}
|
}
|
||||||
|
|
|
@ -42,7 +42,7 @@ public:
|
||||||
int packetsToProcessCount() const { return _packets.size(); }
|
int packetsToProcessCount() const { return _packets.size(); }
|
||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
void nodeKilled(const SharedNodePointer& node);
|
void nodeKilled(SharedNodePointer node);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
/// Callback for processing of recieved packets. Implement this to process the incoming packets.
|
/// Callback for processing of recieved packets. Implement this to process the incoming packets.
|
||||||
|
|
Loading…
Reference in a new issue