Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/pdf/xpdf/OutputDev.cc
diff options
context:
space:
mode:
authorMartin Kretzschmar <mkretzschmar@src.gnome.org>2003-04-01 19:47:11 (GMT)
committer Martin Kretzschmar <mkretzschmar@src.gnome.org>2003-04-01 19:47:11 (GMT)
commit7c5ab64d4db75e4bb6dadedb578e10178554d0db (patch)
tree595854215de7ef2d85e6c624e804966c54eb422c /pdf/xpdf/OutputDev.cc
parentbfd0b848c8c81ab10698f74b77f9f0904c3161e1 (diff)
Merge with Xpdf 2.02 and make it build
Diffstat (limited to 'pdf/xpdf/OutputDev.cc')
-rw-r--r--pdf/xpdf/OutputDev.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/pdf/xpdf/OutputDev.cc b/pdf/xpdf/OutputDev.cc
index 15e6a86..cbb5df5 100644
--- a/pdf/xpdf/OutputDev.cc
+++ b/pdf/xpdf/OutputDev.cc
@@ -2,7 +2,7 @@
//
// OutputDev.cc
//
-// Copyright 1996-2002 Glyph & Cog, LLC
+// Copyright 1996-2003 Glyph & Cog, LLC
//
//========================================================================
@@ -38,7 +38,7 @@ void OutputDev::setDefaultCTM(double *ctm) {
defICTM[5] = (defCTM[1] * defCTM[4] - defCTM[0] * defCTM[5]) * det;
}
-void OutputDev::cvtDevToUser(int dx, int dy, double *ux, double *uy) {
+void OutputDev::cvtDevToUser(double dx, double dy, double *ux, double *uy) {
*ux = defICTM[0] * dx + defICTM[2] * dy + defICTM[4];
*uy = defICTM[1] * dx + defICTM[3] * dy + defICTM[5];
}