remove a bad replacement from PacketType in EntityTree

This commit is contained in:
Stephen Birarda 2015-07-08 16:54:56 -07:00
parent 72b713e32f
commit ac40790841
2 changed files with 30 additions and 30 deletions

View file

@ -63,7 +63,7 @@ void EntityTree::eraseAllOctreeElements(bool createNewRoot) {
Octree::eraseAllOctreeElements(createNewRoot);
}
bool EntityTree::handlesEditPacketType::(PacketType::Value packetType) const {
bool EntityTree::handlesEditPacketType(PacketType::Value packetType) const {
// we handle these types of "edit" packets
switch (packetType) {
case PacketType::EntityAdd:

View file

@ -65,7 +65,7 @@ public:
virtual PacketType::Value expectedDataPacketType() const { return PacketType::EntityData; }
virtual bool canProcessVersion(PacketVersion thisVersion) const
{ return thisVersion >= VERSION_ENTITIES_USE_METERS_AND_RADIANS; }
virtual bool handlesEditPacketType::(PacketType::Value packetType) const;
virtual bool handlesEditPacketType(PacketType::Value packetType) const;
virtual int processEditPacketData(PacketType::Value packetType, const unsigned char* packetData, int packetLength,
const unsigned char* editData, int maxLength, const SharedNodePointer& senderNode);