git.asbjorn.biz
/
swftools.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5bfcb8c
)
fixed pdfdriver function call
author
kramm
<kramm>
Fri, 9 Nov 2007 10:23:25 +0000
(10:23 +0000)
committer
kramm
<kramm>
Fri, 9 Nov 2007 10:23:25 +0000
(10:23 +0000)
lib/python/gfx.c
patch
|
blob
|
history
diff --git
a/lib/python/gfx.c
b/lib/python/gfx.c
index
c9f3fa2
..
dafddfa
100644
(file)
--- a/
lib/python/gfx.c
+++ b/
lib/python/gfx.c
@@
-382,7
+382,7
@@
static PyObject* f_open(PyObject* parent, PyObject* args, PyObject* kwargs)
DocObject*self = PyObject_New(DocObject, &DriverClass);
if(!strcmp(type,"pdf"))
- self->doc = pdfdriver->open(filename);
+ self->doc = pdfdriver->open(pdfdriver,filename);
else
return PY_ERROR("Unknown type %s", type);