Add icons refactor repo structure

This commit is contained in:
Carl Philipp Klemm 2026-03-05 23:46:29 +01:00
parent 1fec61140c
commit b719d8cf96
24 changed files with 317 additions and 594 deletions

View file

@ -1,16 +0,0 @@
#include "MainWindow.h"
#include <QApplication>
#include <QStyleFactory>
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
// Set a modern style
app.setStyle(QStyleFactory::create("Fusion"));
MainWindow window;
window.show();
return app.exec();
}