start with main()

This commit is contained in:
Gerhard Hoffmann 2024-02-28 16:02:26 +01:00
parent 66878e9a96
commit 61a02be58c

View File

@ -1,5 +1,9 @@
#include <QtGlobal>
int main(int argc, char **argv) {
Q_UNUSED(argc);
Q_UNUSED(argv);
return 0;
}