From cd969c4dd1e52de4430661d405072ec823c13527 Mon Sep 17 00:00:00 2001 From: kramm Date: Sat, 20 Oct 2007 17:12:04 +0000 Subject: [PATCH] create GFXGlobalParams instead of GlobalParams --- lib/pdf/pdf.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/pdf/pdf.cc b/lib/pdf/pdf.cc index 4bcf9b9..25a1770 100644 --- a/lib/pdf/pdf.cc +++ b/lib/pdf/pdf.cc @@ -318,10 +318,6 @@ static gfxdocument_t*pdf_open(const char*filename) GString *fileName = new GString(filename); GString *userPW; - // read config file - if(!globalParams) - globalParams = new GlobalParams(""); - // open PDF file if (userPassword && userPassword[0]) { userPW = new GString(userPassword); @@ -387,6 +383,10 @@ static gfxdocument_t*pdf_open(const char*filename) gfxsource_t*gfxsource_pdf_create() { + if(!globalParams) { + globalParams = new GFXGlobalParams(); + } + gfxsource_t*src = (gfxsource_t*)malloc(sizeof(gfxsource_t)); memset(src, 0, sizeof(gfxsource_t)); src->set_parameter = pdf_set_parameter; -- 1.7.10.4