You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
334 B
14 lines
334 B
#include <libfm/fm.h>
|
|
#include "application.h"
|
|
#include "libfmqt.h"
|
|
|
|
int main(int argc, char** argv) {
|
|
// 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");
|
|
|
|
PCManFM::Application app(argc, argv);
|
|
app.init();
|
|
return app.exec();
|
|
}
|