Bugfixes - PostScript functions can have blocks without if - for example '{ 2 3 add }'

This commit is contained in:
Jakub Melka
2019-04-29 14:14:06 +02:00
parent a407dbd3f3
commit bfcc48ff1b
6 changed files with 148 additions and 35 deletions

View File

@ -17,6 +17,7 @@
#include "pdfviewermainwindow.h"
#include <QResource>
#include <QApplication>
#include <QCommandLineParser>
@ -34,6 +35,8 @@ int main(int argc, char *argv[])
parser.addPositionalArgument("file", "The PDF file to open.");
parser.process(application);
QResource::registerResource(QString("cmaps.qrb"));
pdfviewer::PDFViewerMainWindow mainWindow;
mainWindow.show();