Text annotations graphics

This commit is contained in:
Jakub Melka
2020-03-31 19:38:43 +02:00
parent 629559bb53
commit 8d242e752f
5 changed files with 86 additions and 4 deletions

View File

@ -15,12 +15,12 @@
// You should have received a copy of the GNU Lesser General Public License
// along with PDFForQt. If not, see <https://www.gnu.org/licenses/>.
#include <QCoreApplication>
#include <QApplication>
#include "pdfexamplesgenerator.h"
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
QApplication a(argc, argv);
PDFExamplesGenerator::generateAnnotationsExample();
}