diff options
author | Matthias Kramm <kramm@quiss.org> | 2012-05-14 08:57:42 -0700 |
---|---|---|
committer | Matthias Kramm <kramm@quiss.org> | 2012-05-14 08:57:42 -0700 |
commit | e22ec9f3ddafef9a767186cecd5c513b3a5c3302 (patch) | |
tree | f4e6cd0c24b50aebf6fc4e6a28de7fed6a666d67 /lib/pdf | |
parent | dcd492c897922f5047108b1be21af6716789fdfb (diff) |
dump out link coordinates
Diffstat (limited to 'lib/pdf')
-rw-r--r-- | lib/pdf/CharOutputDev.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pdf/CharOutputDev.cc b/lib/pdf/CharOutputDev.cc index 6620008d..475c614b 100644 --- a/lib/pdf/CharOutputDev.cc +++ b/lib/pdf/CharOutputDev.cc @@ -1200,7 +1200,7 @@ void CharOutputDev::processLink(Link *link, Catalog *catalog) printf("adding link %p at %f %f %f %f to tree\n", this->last_link, x1, y1, x2, y2); #endif - msg("<verbose> storing \"%s\" link to \"%s\"", type, FIXNULL(action)); + msg("<verbose> storing \"%s\" link to \"%s\" (%f %f %f %f)", type, FIXNULL(action), x1, y1, x2, y2); free(s);s=0; } |