Changed hue in HsvTransform from uint_8 to uint16_t

This commit is contained in:
johan
2013-08-22 20:31:57 +02:00
parent 51506cdeb9
commit 9fe2fcfdd0
6 changed files with 18 additions and 13 deletions

View File

@@ -18,7 +18,7 @@ set(JsonServer_SOURCES
)
set(JsonServer_RESOURCES
${CURRENT_SOURCE_DIR}/resource.qrc
${CURRENT_SOURCE_DIR}/JsonSchemas.qrc
)
qt4_wrap_cpp(JsonServer_HEADERS_MOC ${JsonServer_QT_HEADERS})

View File

@@ -20,7 +20,7 @@ JsonServer::JsonServer(Hyperion *hyperion, uint16_t port) :
connect(&_server, SIGNAL(newConnection()), this, SLOT(newConnection()));
// make sure the resources are loaded (they may be left out after static linking
Q_INIT_RESOURCE(resource);
Q_INIT_RESOURCE(JsonSchemas);
}
JsonServer::~JsonServer()