diff options
author | Steru <jerrydream111@gmail.com> | 2024-08-02 10:46:21 +0200 |
---|---|---|
committer | Steru <jerrydream111@gmail.com> | 2024-08-02 10:46:21 +0200 |
commit | a507698b6813604c0d547a2e4c5e1cc65c08f93d (patch) | |
tree | e9639a158688d6afcf92cd9b556bd5b6e2e085e0 /src/main | |
parent | b5566cbcf7541819490e6e97610485c4194c716f (diff) |
Added SVGs of different sports, extended README, fixed paths.
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 |