From 840bf7cfb4c3d239df05ca8dc6c50fa8a722bd42 Mon Sep 17 00:00:00 2001 From: David Rowe Date: Sun, 24 Jan 2016 10:53:40 +1300 Subject: [PATCH] Fix OSX and Linux build warning And a typo noticed in passing. --- libraries/entities/src/EntityItemProperties.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libraries/entities/src/EntityItemProperties.h b/libraries/entities/src/EntityItemProperties.h index 7c7dd4d747..c0a610ac5c 100644 --- a/libraries/entities/src/EntityItemProperties.h +++ b/libraries/entities/src/EntityItemProperties.h @@ -285,14 +285,12 @@ private: EntityTypes::EntityType _type; void setType(const QString& typeName) { _type = EntityTypes::getEntityTypeFromName(typeName); } - bool _entityFound; - float _glowLevel; float _localRenderAlpha; bool _glowLevelChanged; bool _localRenderAlphaChanged; bool _defaultSettings; - bool _dimensionsInitialized = true; // Only false if creating an entity localy with no dimensions properties + bool _dimensionsInitialized = true; // Only false if creating an entity locally with no dimensions properties // NOTE: The following are pseudo client only properties. They are only used in clients which can access // properties of model geometry. But these properties are not serialized like other properties. @@ -302,6 +300,8 @@ private: glm::vec3 _naturalPosition; EntityPropertyFlags _desiredProperties; // if set will narrow scopes of copy/to/from to just these properties + + bool _entityFound; }; Q_DECLARE_METATYPE(EntityItemProperties);