diff options
author | arved <arved@FreeBSD.org> | 2007-08-01 04:34:39 +0800 |
---|---|---|
committer | arved <arved@FreeBSD.org> | 2007-08-01 04:34:39 +0800 |
commit | 094fa8f155800b5475268c7e89e11a1e1aad256f (patch) | |
tree | 030abde7c36c63d1abf433d06696d4f9d0c64c17 /x11-toolkits/v/files/patch-srcx-vcanvas.cxx | |
parent | ff2a4e78579dbb7ca03f28a98669132a64a0c2f0 (diff) | |
download | freebsd-ports-gnome-094fa8f155800b5475268c7e89e11a1e1aad256f.tar.gz freebsd-ports-gnome-094fa8f155800b5475268c7e89e11a1e1aad256f.tar.zst freebsd-ports-gnome-094fa8f155800b5475268c7e89e11a1e1aad256f.zip |
Fix build on 64bit platforms
Diffstat (limited to 'x11-toolkits/v/files/patch-srcx-vcanvas.cxx')
-rw-r--r-- | x11-toolkits/v/files/patch-srcx-vcanvas.cxx | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/x11-toolkits/v/files/patch-srcx-vcanvas.cxx b/x11-toolkits/v/files/patch-srcx-vcanvas.cxx new file mode 100644 index 000000000000..4dfaf5a05361 --- /dev/null +++ b/x11-toolkits/v/files/patch-srcx-vcanvas.cxx @@ -0,0 +1,20 @@ +--- srcx/vcanvas.cxx.orig 2007-07-31 22:24:59.000000000 +0200 ++++ srcx/vcanvas.cxx 2007-07-31 22:25:47.000000000 +0200 +@@ -1326,7 +1326,7 @@ + } + } + #else +- int pos = (int)position; ++ intptr_t pos = (intptr_t)position; + ((vCanvasPane*)This)->HScrollProcCB(pos); + #endif + } +@@ -1365,7 +1365,7 @@ + } + } + #else +- int pos = (int)position; ++ intptr_t pos = (intptr_t)position; + ((vCanvasPane*)This)->VScrollProcCB(pos); + #endif + } |