#include "qremamain.h" #include 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(); }