Disable isOrdered = true in PacketList

This commit is contained in:
Ryan Huffman 2015-07-07 15:44:03 -07:00
parent 57b69d1501
commit b502239cca
2 changed files with 3 additions and 3 deletions

View file

@ -11,9 +11,9 @@
#include "PacketList.h"
PacketList::PacketList(PacketType::Value packetType, bool isOrdered) :
PacketList::PacketList(PacketType::Value packetType) :
_packetType(packetType),
_isOrdered(isOrdered)
_isOrdered(false)
{
}

View file

@ -16,7 +16,7 @@
template <class T> class PacketList : public QIODevice {
public:
PacketList(PacketType::Value packetType, bool isOrdered = false);
PacketList(PacketType::Value packetType);
virtual bool isSequential() const { return true; }