2015-08-13 06:44:06 +08:00
|
|
|
#include <libfm/fm.h>
|
|
|
|
#include "application.h"
|
|
|
|
#include "libfmqt.h"
|
|
|
|
|
|
|
|
int main(int argc, char** argv) {
|
2015-08-16 05:54:46 +08:00
|
|
|
// ensure that glib integration of Qt is not turned off
|
|
|
|
// This fixes #168: https://github.com/lxde/pcmanfm-qt/issues/168
|
|
|
|
qunsetenv("QT_NO_GLIB");
|
|
|
|
|
2015-08-13 06:44:06 +08:00
|
|
|
PCManFM::Application app(argc, argv);
|
|
|
|
app.init();
|
|
|
|
return app.exec();
|
|
|
|
}
|