Merge branch 'develop' into feature/ds_from_script

This commit is contained in:
Arin Alexander
2019-01-29 23:20:58 +03:00
25 changed files with 602 additions and 405 deletions

View File

@@ -95,6 +95,7 @@ namespace Const{
const int SCENE_MARGIN = 50;
const QString FUNCTION_MANAGER_NAME = "LimeReport";
const QString EOW("~!@#$%^&*()+{}|:\"<>?,/;'[]\\-=");
const int DEFAULT_TAB_INDENTION = 4;
}
QString extractClassName(QString className);
@@ -157,6 +158,7 @@ namespace Const{
static inline QJSValue getJSValue(QJSEngine &e, T *p)
{
QJSValue res = e.newQObject(p);
QQmlEngine::setObjectOwnership(p, QQmlEngine::CppOwnership);
return res;
}
#else