Welcome to mirror list, hosted at ThFree Co, Russian Federation.

main.cpp « src - gitlab.com/Remmina/QRema.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b7d54a8dcf242c1a7b49e90e81a0ed01590e906e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "qremamain.h"
#include <QApplication>

int main(int argc, char *argv[])
{
    // ensure that glib integration of Qt is not turned off
    // This fixes #168: https://github.com/lxqt/pcmanfm-qt/issues/168
    qunsetenv("QT_NO_GLIB");
    QApplication a(argc, argv);
    QRemaMain w;
    w.show();

    return a.exec();
}