txtcord/main.cpp

19 lines
304 B
C++
Raw Permalink Normal View History

2024-08-14 13:48:27 -04:00
#include "mainwindow.h"
#include <QApplication>
#include <QLocale>
#include <QPushButton>
#include <QTranslator>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.setWindowTitle("txtcord");
2024-08-14 14:54:24 -04:00
w.setMinimumSize(400, 300);
2024-08-14 13:48:27 -04:00
w.show();
return a.exec();
}