Remove unused widget

This commit is contained in:
Arnaud 2026-01-22 18:49:56 +04:00
parent 3a93cfb520
commit 0615899689
No known key found for this signature in database
GPG Key ID: 20E40A5D3110766F
2 changed files with 0 additions and 45 deletions

View File

@ -1,24 +0,0 @@
#include "DebugWidget.h"
#include <QDebug>
// Static pointer to the active StorageWidget for callbacks
static StorageWidget* activeWidget = nullptr;
StorageWidget::StorageWidget(QWidget* parent) : QWidget(parent) {
// Set as the active widget
activeWidget = this;
// m_logosAPI = new LogosAPI("core", this);
// logos = new LogosModules(m_logosAPI);
// Main vertical layout
mainLayout = new QVBoxLayout(this);
}
StorageWidget::~StorageWidget() {
// Reset the active widget if it's this instance
if (activeWidget == this) {
activeWidget = nullptr;
}
}

View File

@ -1,21 +0,0 @@
#pragma once
#include <QVBoxLayout>
#include <QWidget>
class DebugWidget : public QWidget {
Q_OBJECT
public:
explicit DebugWidget(QWidget* parent = nullptr);
~DebugWidget();
// private slots:
// void onSendButtonClicked();
// void onStartButtonClicked();
// void onDebugButtonClicked();
private:
// UI elements
QVBoxLayout* mainLayout;
};