From fbe3d0d8bc524be1217268d8ee23df5ae905abf4 Mon Sep 17 00:00:00 2001 From: crueter Date: Sat, 13 Dec 2025 18:46:22 -0500 Subject: [PATCH] remove dbg stuff Signed-off-by: crueter --- src/Eden/Interface/QMLConfig.h | 1 - src/Eden/Main/DepsDialog.qml | 6 ------ src/Eden/Native/main.cpp | 14 +++++++------- 3 files changed, 7 insertions(+), 14 deletions(-) diff --git a/src/Eden/Interface/QMLConfig.h b/src/Eden/Interface/QMLConfig.h index 86db635383..866f5640b0 100644 --- a/src/Eden/Interface/QMLConfig.h +++ b/src/Eden/Interface/QMLConfig.h @@ -7,7 +7,6 @@ #include "qt_common/config/qt_config.h" #include -#include class QMLConfig : public QObject { Q_OBJECT diff --git a/src/Eden/Main/DepsDialog.qml b/src/Eden/Main/DepsDialog.qml index b07701efb1..5d5df60949 100644 --- a/src/Eden/Main/DepsDialog.qml +++ b/src/Eden/Main/DepsDialog.qml @@ -66,8 +66,6 @@ NativeDialog { width: 1 } - Component.onCompleted: console.log(display, row) - Label { text: display anchors.fill: parent @@ -93,8 +91,6 @@ NativeDialog { boundsBehavior: Flickable.StopAtBounds clip: true - Component.onCompleted: console.log(itemAtCell(Qt.point(1, 1))) - delegate: Rectangle { required property string display required property int row @@ -108,8 +104,6 @@ NativeDialog { width: 1 } - Component.onCompleted: console.log(display, row) - Label { text: display anchors.fill: parent diff --git a/src/Eden/Native/main.cpp b/src/Eden/Native/main.cpp index 78ee09afc0..4e8dd1a5f5 100644 --- a/src/Eden/Native/main.cpp +++ b/src/Eden/Native/main.cpp @@ -13,14 +13,14 @@ int main(int argc, char *argv[]) { EdenApplication app(argc, argv); - QDirIterator iter(QDir(QStringLiteral(":/")), QDirIterator::Subdirectories); + // QDirIterator iter(QDir(QStringLiteral(":/")), QDirIterator::Subdirectories); - while (iter.hasNext()) { - QString next = iter.next(); - if (!next.contains(QStringLiteral("k")) && !next.contains(QStringLiteral("breeze"))) { - qDebug() << next; - } - } + // while (iter.hasNext()) { + // QString next = iter.next(); + // if (!next.contains(QStringLiteral("k")) && !next.contains(QStringLiteral("breeze"))) { + // qDebug() << next; + // } + // } return app.run(); }