refactor: improve header imports and forward declarations

This commit is contained in:
talksik
2026-01-14 17:11:12 -08:00
parent 3780aa6b66
commit c4a85cf212
4 changed files with 5 additions and 2 deletions
+1 -1
View File
@@ -201,4 +201,4 @@ void MainWindow::setupTrayIcon()
MainWindow::~MainWindow()
{
}
}
+2
View File
@@ -7,8 +7,10 @@
#include <QMainWindow>
QT_BEGIN_NAMESPACE
class QSvgWidget;
class QSystemTrayIcon;
QT_END_NAMESPACE
class MainWindow : public QMainWindow
{
+2
View File
@@ -3,6 +3,8 @@
//
#include "VerticalLabel.h"
#include <QPainter>
VerticalLabel::VerticalLabel(const QString &text, QWidget *parent) : QLabel(text, parent)
{
-1
View File
@@ -6,7 +6,6 @@
#define LLINK_VERTICALLABEL_H
#include <QLabel>
#include <QPainter>
class VerticalLabel : public QLabel
{