pointer delete under memory management

This commit is contained in:
王劲鹏
2019-12-04 16:44:30 +08:00
parent dbdd1770ef
commit b82a00dd90
10 changed files with 77 additions and 22 deletions

View File

@@ -10,8 +10,8 @@ class NativeBridge : public QObject {
public:
NativeBridge(QObject *parent = nullptr) : QObject(parent) {}
Q_INVOKABLE void function() {
Q_INVOKABLE void function(int contextId) {
qDebug() << contextId;
}
};