Apply changes from jsincludes.h template

This commit is contained in:
Martchus 2018-04-29 18:59:41 +02:00
parent ef37f08717
commit f39abd56db
2 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
// Created via CMake from template webviewdefs.h.in
// Created via CMake from template jsdefs.h.in
// WARNING! Any changes to this file will be overwritten by the next CMake run!
#ifndef TAGEDITOR_JAVA_SCRIPT_DEFINES
@ -22,7 +22,7 @@
# define TAGEDITOR_JS_QOBJECT(engine, obj) engine.newQObject(obj, QScriptEngine::ScriptOwnership)
# define TAGEDITOR_JS_INT(value) value.toInt32()
# define TAGEDITOR_JS_IS_VALID_PROG(program) (!program.isError() && program.isFunction())
#elif !defined(TAGEDITOR_NO_WEBVIEW)
#elif !defined(TAGEDITOR_NO_JSENGINE)
# error "No definition for JavaScript provider present."
#endif

View File

@ -1,4 +1,4 @@
// Created via CMake from template webviewdefs.h.in
// Created via CMake from template jsincludes.h.in
// WARNING! Any changes to this file will be overwritten by the next CMake run!
#ifndef TAGEDITOR_JAVA_SCRIPT_INCLUDES
@ -12,7 +12,7 @@
#elif defined(TAGEDITOR_USE_SCRIPT)
# include <QScriptEngine>
# include <QScriptValue>
#elif !defined(TAGEDITOR_NO_WEBVIEW)
#elif !defined(TAGEDITOR_NO_JSENGINE)
# error "No definition for JavaScript provider present."
#endif