destroy context when qquickview hidden

This commit is contained in:
王劲鹏
2021-04-09 16:39:43 +08:00
committed by osborn
parent 7402fc2c0c
commit d9828dca93
13 changed files with 56 additions and 6 deletions

View File

@@ -33,3 +33,4 @@ const QString DoricConstant::DORIC_ENTITY_RESPONSE = "__response__";
const QString DoricConstant::DORIC_ENTITY_INIT = "__init__";
const QString DoricConstant::DORIC_ENTITY_CREATE = "__onCreate__";
const QString DoricConstant::DORIC_ENTITY_BUILD = "__build__";
const QString DoricConstant::DORIC_ENTITY_DESTROY = "__onDestroy__";

View File

@@ -30,6 +30,7 @@ public:
static const QString DORIC_ENTITY_CREATE;
static const QString DORIC_ENTITY_INIT;
static const QString DORIC_ENTITY_BUILD;
static const QString DORIC_ENTITY_DESTROY;
};
#endif // CONSTANT_H