aboutsummaryrefslogtreecommitdiff
path: root/qdeduper/main.cpp
blob: 9be94f437b34f4e44145dd842c7afc0c8b055e0a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <QWidget>
#include <QApplication>
#include "mingui.hpp"

DeduperMainWindow *w = nullptr;

int main(int argc, char **argv)
{
    QApplication a(argc, argv);
    a.setAttribute(Qt::ApplicationAttribute::AA_UseHighDpiPixmaps);

    w = new DeduperMainWindow();
    w->show();

    a.exec();

    return 0;
}