From 92e291250aae9a66565c9ad7ef1ad6f4a0de31d8 Mon Sep 17 00:00:00 2001 From: David Thornley Date: Fri, 14 Sep 2018 09:56:06 +0200 Subject: [PATCH] Fix missing default parameter value cause compile to fail. --- src/api/renderer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/renderer.h b/src/api/renderer.h index b27b5781f..a2b6c8e6b 100644 --- a/src/api/renderer.h +++ b/src/api/renderer.h @@ -187,7 +187,7 @@ class TESS_API TessPDFRenderer : public TessResultRenderer { public: // datadir is the location of the TESSDATA. We need it because // we load a custom PDF font from this location. - TessPDFRenderer(const char* outputbase, const char* datadir, bool textonly = false, int jpg_quality); + TessPDFRenderer(const char* outputbase, const char* datadir, bool textonly = false, int jpg_quality = 85); protected: virtual bool BeginDocumentHandler();