Browse Source

remove dbg stuff

Signed-off-by: crueter <crueter@eden-emu.dev>
pull/3016/head
crueter 1 week ago
parent
commit
fbe3d0d8bc
No known key found for this signature in database GPG Key ID: 425ACD2D4830EBC6
  1. 1
      src/Eden/Interface/QMLConfig.h
  2. 6
      src/Eden/Main/DepsDialog.qml
  3. 14
      src/Eden/Native/main.cpp

1
src/Eden/Interface/QMLConfig.h

@ -7,7 +7,6 @@
#include "qt_common/config/qt_config.h" #include "qt_common/config/qt_config.h"
#include <QObject> #include <QObject>
#include <qdebug.h>
class QMLConfig : public QObject { class QMLConfig : public QObject {
Q_OBJECT Q_OBJECT

6
src/Eden/Main/DepsDialog.qml

@ -66,8 +66,6 @@ NativeDialog {
width: 1 width: 1
} }
Component.onCompleted: console.log(display, row)
Label { Label {
text: display text: display
anchors.fill: parent anchors.fill: parent
@ -93,8 +91,6 @@ NativeDialog {
boundsBehavior: Flickable.StopAtBounds boundsBehavior: Flickable.StopAtBounds
clip: true clip: true
Component.onCompleted: console.log(itemAtCell(Qt.point(1, 1)))
delegate: Rectangle { delegate: Rectangle {
required property string display required property string display
required property int row required property int row
@ -108,8 +104,6 @@ NativeDialog {
width: 1 width: 1
} }
Component.onCompleted: console.log(display, row)
Label { Label {
text: display text: display
anchors.fill: parent anchors.fill: parent

14
src/Eden/Native/main.cpp

@ -13,14 +13,14 @@ int main(int argc, char *argv[])
{ {
EdenApplication app(argc, 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(); return app.run();
} }

Loading…
Cancel
Save