diff --git a/CMakeLists.txt b/CMakeLists.txt index 7e84677..b3a2f87 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ ## Project for working with OpenGL and Qt6 widgets ## ## ## ## Author: Shaun Reed | Contact: shaunrd0@gmail.com | URL: www.shaunreed.com ## -## All Content (c) 2023 Shaun Reed, all rights reserved ## +## All Content (c) 2025 Shaun Reed, all rights reserved ## ################################################################################ cmake_minimum_required(VERSION 3.23) diff --git a/example-app/CMakeLists.txt b/example-app/CMakeLists.txt index fb92b2c..6b19e5c 100644 --- a/example-app/CMakeLists.txt +++ b/example-app/CMakeLists.txt @@ -2,7 +2,7 @@ ## Example client project using qtk ## ## ## ## Author: Shaun Reed | Contact: shaunrd0@gmail.com | URL: www.shaunreed.com ## -## All Content (c) 2023 Shaun Reed, all rights reserved ## +## All Content (c) 2025 Shaun Reed, all rights reserved ## ################################################################################ cmake_minimum_required(VERSION 3.23) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index cc12359..071757e 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -2,7 +2,7 @@ ## Project for working with OpenGL and Qt6 widgets ## ## ## ## Author: Shaun Reed | Contact: shaunrd0@gmail.com | URL: www.shaunreed.com ## -## All Content (c) 2023 Shaun Reed, all rights reserved ## +## All Content (c) 2025 Shaun Reed, all rights reserved ## ################################################################################ # Qtk Library diff --git a/src/app/CMakeLists.txt b/src/app/CMakeLists.txt index 775931c..c42ab1a 100644 --- a/src/app/CMakeLists.txt +++ b/src/app/CMakeLists.txt @@ -2,7 +2,7 @@ ## Project for working with OpenGL and Qt6 widgets ## ## ## ## Author: Shaun Reed | Contact: shaunrd0@gmail.com | URL: www.shaunreed.com ## -## All Content (c) 2023 Shaun Reed, all rights reserved ## +## All Content (c) 2025 Shaun Reed, all rights reserved ## ################################################################################ ################################################################################ diff --git a/src/app/qtkscene.h b/src/app/qtkscene.h index 74aa5fb..894ff9e 100644 --- a/src/app/qtkscene.h +++ b/src/app/qtkscene.h @@ -11,11 +11,11 @@ #include -#define QTK_SPARTAN "resources/models/spartan/spartan.obj" +#define QTK_SPARTAN "resources/models/spartan/spartan.obj" #define QTK_BACKPACK "resources/models/backpack/backpack.obj" -#define QTK_BIRD "resources/models/bird/bird.obj" -#define QTK_ALIEN "resources/models/alien-hominid/alien.obj" -#define QTK_SCYTHE "resources/models/scythe/scythe.obj" +#define QTK_BIRD "resources/models/bird/bird.obj" +#define QTK_ALIEN "resources/models/alien-hominid/alien.obj" +#define QTK_SCYTHE "resources/models/scythe/scythe.obj" /** * Example scene using QtkWidget to render 3D models and simple geometry within diff --git a/src/designer-plugins/CMakeLists.txt b/src/designer-plugins/CMakeLists.txt index 357bd30..92cf2bb 100644 --- a/src/designer-plugins/CMakeLists.txt +++ b/src/designer-plugins/CMakeLists.txt @@ -2,7 +2,7 @@ ## Project for working with OpenGL and Qt6 widgets ## ## ## ## Author: Shaun Reed | Contact: shaunrd0@gmail.com | URL: www.shaunreed.com ## -## All Content (c) 2023 Shaun Reed, all rights reserved ## +## All Content (c) 2025 Shaun Reed, all rights reserved ## ################################################################################ ################################################################################ diff --git a/src/designer-plugins/qtkwidget.cpp b/src/designer-plugins/qtkwidget.cpp index e134b56..7d183a6 100644 --- a/src/designer-plugins/qtkwidget.cpp +++ b/src/designer-plugins/qtkwidget.cpp @@ -131,9 +131,8 @@ void QtkWidget::paintGL() void QtkWidget::setScene(Scene * scene) { - if (mScene != Q_NULLPTR) { - delete mScene; - } + delete mScene; + mScene = scene; if (mScene != Q_NULLPTR) { diff --git a/src/designer-plugins/qtkwidget.h b/src/designer-plugins/qtkwidget.h index 16a250c..a4795a8 100644 --- a/src/designer-plugins/qtkwidget.h +++ b/src/designer-plugins/qtkwidget.h @@ -267,7 +267,6 @@ namespace Qtk } qDebug() << this << " Adding new QtkWidget named '" << name << "'"; mQtkWidgets[name] = widget; - return; } private: diff --git a/src/qtk/CMakeLists.txt b/src/qtk/CMakeLists.txt index 4eca544..6865fc8 100644 --- a/src/qtk/CMakeLists.txt +++ b/src/qtk/CMakeLists.txt @@ -2,7 +2,7 @@ ## Project for working with OpenGL and Qt6 widgets ## ## ## ## Author: Shaun Reed | Contact: shaunrd0@gmail.com | URL: www.shaunreed.com ## -## All Content (c) 2023 Shaun Reed, all rights reserved ## +## All Content (c) 2025 Shaun Reed, all rights reserved ## ################################################################################ ################################################################################