diff --git a/examples/advanced-qml-auto-reload/lisp/ui-vars.lisp b/examples/advanced-qml-auto-reload/lisp/ui-vars.lisp index 20b81bf..0e2f169 100644 --- a/examples/advanced-qml-auto-reload/lisp/ui-vars.lisp +++ b/examples/advanced-qml-auto-reload/lisp/ui-vars.lisp @@ -4,6 +4,7 @@ #:*flick-output* #:*history-back* #:*history-forward* + #:*main* #:*progress* #:*repl-input* #:*repl-output* @@ -14,6 +15,7 @@ (defparameter *flick-output* "flick_output") (defparameter *history-back* "history_back") (defparameter *history-forward* "history_forward") +(defparameter *main* "main") (defparameter *progress* "progress") (defparameter *repl-input* "repl_input") (defparameter *repl-output* "repl_output") diff --git a/examples/advanced-qml-auto-reload/qml/main.qml b/examples/advanced-qml-auto-reload/qml/main.qml index cc5b94a..880ff4f 100644 --- a/examples/advanced-qml-auto-reload/qml/main.qml +++ b/examples/advanced-qml-auto-reload/qml/main.qml @@ -6,6 +6,7 @@ import ".ext/" as Ext // for single file auto reload (development) Rectangle { width: 300 height: 500 + objectName: "main" color: "black" SwipeView { diff --git a/examples/app-template/readme-build.md b/examples/app-template/readme-build.md index 7eb7cf9..b14a16e 100644 --- a/examples/app-template/readme-build.md +++ b/examples/app-template/readme-build.md @@ -75,9 +75,7 @@ Please note: to 'File' / 'Project Settings' and select 'New Build System' * you only need to run `qmake-ios` again after you added/removed files to the - project; after every `qmake-ios`, the above steps need to be repeated; if you - only edited e.g. some QML file, you need to run 'Product / Clean Build - Folder' in order to have the changes compiled into the app + project; after every `qmake-ios`, the above steps need to be repeated If you cross-compiled ECL for the simulator, it should work there too, but this is currently only tested on **Intel**.