From 8e793e790a16da8ea3aaf287fa13e351037a26dd Mon Sep 17 00:00:00 2001 From: Nissim Hadar Date: Sun, 7 Jan 2018 14:11:26 -0800 Subject: [PATCH] Deleted unused include file. --- .../entities/src/EntityItemProperties.cpp | 1 - libraries/shared/src/BackgroundMode.h | 23 ------------------- 2 files changed, 24 deletions(-) delete mode 100644 libraries/shared/src/BackgroundMode.h diff --git a/libraries/entities/src/EntityItemProperties.cpp b/libraries/entities/src/EntityItemProperties.cpp index d118747fa1..f3ceeb208d 100644 --- a/libraries/entities/src/EntityItemProperties.cpp +++ b/libraries/entities/src/EntityItemProperties.cpp @@ -1134,7 +1134,6 @@ void EntityItemProperties::entityPropertyFlagsFromScriptValue(const QScriptValue ADD_PROPERTY_TO_MAP(PROP_VOXEL_DATA, VoxelData, voxelData, QByteArray); ADD_PROPERTY_TO_MAP(PROP_VOXEL_SURFACE_STYLE, VoxelSurfaceStyle, voxelSurfaceStyle, uint16_t); ADD_PROPERTY_TO_MAP(PROP_NAME, Name, name, QString); - ADD_PROPERTY_TO_MAP(PROP_BACKGROUND_MODE, BackgroundMode, backgroundMode, BackgroundMode); ADD_PROPERTY_TO_MAP(PROP_SOURCE_URL, SourceUrl, sourceUrl, QString); ADD_PROPERTY_TO_MAP(PROP_LINE_WIDTH, LineWidth, lineWidth, float); ADD_PROPERTY_TO_MAP(PROP_LINE_POINTS, LinePoints, linePoints, QVector); diff --git a/libraries/shared/src/BackgroundMode.h b/libraries/shared/src/BackgroundMode.h deleted file mode 100644 index 0e0d684e62..0000000000 --- a/libraries/shared/src/BackgroundMode.h +++ /dev/null @@ -1,23 +0,0 @@ -// -// BackgroundMode.h -// libraries/physics/src -// -// Copyright 2015 High Fidelity, Inc. -// -// Distributed under the Apache License, Version 2.0. -// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html -// - -#ifndef hifi_BackgroundMode_h -#define hifi_BackgroundMode_h - -enum BackgroundMode { - BACKGROUND_MODE_INHERIT, - BACKGROUND_MODE_SKYBOX, - - BACKGROUND_MODE_ITEM_COUNT, -}; - - -#endif // hifi_BackgroundMode_h -