diff options
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/main.cpp b/src/main/main.cpp index 4796716..52a6c2d 100644 --- a/src/main/main.cpp +++ b/src/main/main.cpp @@ -10,7 +10,7 @@ int main(int argc, char *argv[]) QQmlEngine engine; QQmlContext *objectContext = new QQmlContext(engine.rootContext()); - QQmlComponent component(&engine, "application.qml"); + QQmlComponent component(&engine, "../../res/gui/application.qml"); QObject *object = component.create(objectContext); // ... delete object and objectContext when necessary |