mirror of
https://github.com/overte-org/overte.git
synced 2025-08-10 16:23:17 +02:00
Disable isOrdered = true in PacketList
This commit is contained in:
parent
57b69d1501
commit
b502239cca
2 changed files with 3 additions and 3 deletions
|
@ -11,9 +11,9 @@
|
||||||
|
|
||||||
#include "PacketList.h"
|
#include "PacketList.h"
|
||||||
|
|
||||||
PacketList::PacketList(PacketType::Value packetType, bool isOrdered) :
|
PacketList::PacketList(PacketType::Value packetType) :
|
||||||
_packetType(packetType),
|
_packetType(packetType),
|
||||||
_isOrdered(isOrdered)
|
_isOrdered(false)
|
||||||
{
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
|
|
||||||
template <class T> class PacketList : public QIODevice {
|
template <class T> class PacketList : public QIODevice {
|
||||||
public:
|
public:
|
||||||
PacketList(PacketType::Value packetType, bool isOrdered = false);
|
PacketList(PacketType::Value packetType);
|
||||||
|
|
||||||
virtual bool isSequential() const { return true; }
|
virtual bool isSequential() const { return true; }
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue