aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
blob: fa22cc1ac3b6656e9f5e1ec75bd9a2c9b6e425d5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "mainwindow.hpp"

#include <QApplication>
#include <QUrl>
#include <QSettings>

int main(int argc, char *argv[])
{
    QApplication app(argc, argv);

    MainWindow w(&app);
    w.addEmptyTab(true, true);
    w.show();

    return app.exec();
}