If my directory structure is
main.qml
Controls/Button.qml
ControlsEx/Button.qml
and in main.qml I write
import "Controls"
import "ControlsEx"
then ControlsEx/Button.qml silently overrides Controls/Button.qml. No warning, no sign that something goes wrong. Is it OK?
↧