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.
nextcloud-server/apps/files_odfviewer/src/webodf/programs/nativeQtClient/main.cpp

11 lines
202 B

#include "odfview.h"
#include <QtGui/QApplication>
#include <QtCore/QTimer>
int main(int argc, char *argv[]) {
QApplication a(argc, argv);
OdfView view;
view.show();
return a.exec();
}