File: pcmanfm.cpp

package info (click to toggle)
pcmanfm-qt 2.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 7,052 kB
  • sloc: cpp: 10,525; xml: 47; makefile: 10
file content (13 lines) | stat: -rw-r--r-- 335 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "application.h"
#include <libfm-qt6/libfmqt.h>

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");

    PCManFM::Application app(argc, argv);

    app.init();
    return app.exec();
}