aboutsummaryrefslogtreecommitdiff
path: root/multimedia/openmovieeditor
diff options
context:
space:
mode:
authorPav Lucistnik <pav@FreeBSD.org>2012-02-24 21:58:42 +0000
committerPav Lucistnik <pav@FreeBSD.org>2012-02-24 21:58:42 +0000
commit370de22bf8f4190629f6a98e5fc2ccfa9d6d266d (patch)
tree7e32926e948369dc18aa902dcf8e069bfd51216b /multimedia/openmovieeditor
parent7b8c2c828e0750b51dd2d8f92ecf90d1de543258 (diff)
downloadports-370de22bf8f4190629f6a98e5fc2ccfa9d6d266d.tar.gz
ports-370de22bf8f4190629f6a98e5fc2ccfa9d6d266d.zip
- Remove one of two identical patch files
Reported by: pointyhat
Notes
Notes: svn path=/head/; revision=292199
Diffstat (limited to 'multimedia/openmovieeditor')
-rw-r--r--multimedia/openmovieeditor/files/patch-Fl_Split.cpp31
1 files changed, 0 insertions, 31 deletions
diff --git a/multimedia/openmovieeditor/files/patch-Fl_Split.cpp b/multimedia/openmovieeditor/files/patch-Fl_Split.cpp
deleted file mode 100644
index 416f2c4270b8..000000000000
--- a/multimedia/openmovieeditor/files/patch-Fl_Split.cpp
+++ /dev/null
@@ -1,31 +0,0 @@
---- src/Fl_Split.cpp.orig 2011-11-17 15:41:17.000000000 +0100
-+++ src/Fl_Split.cpp 2011-11-17 15:46:21.000000000 +0100
-@@ -38,7 +38,7 @@
-
- void Fl_Split::position(int oix, int oiy, int newx, int newy) {
- Fl_Widget*const* a = array();
-- short* p = sizes();
-+ int* p = sizes();
- p += 8; // skip group & resizable's saved size
- for (int i=children(); i--; p += 4) {
- Fl_Widget* o = *a++;
-@@ -88,7 +88,7 @@
- return;
- }
-
-- short* p = sizes();
-+ int* p = sizes();
- // resize this (skip the Fl_Group resize):
- Fl_Widget::resize(X,Y,W,H);
-
-@@ -155,8 +155,8 @@
- int oldx = 0;
- int oldy = 0;
- Fl_Widget*const* a = array();
-- short* q = sizes();
-- short* p = q+8;
-+ int* q = sizes();
-+ int* p = q+8;
- //printf("cursor(%d,%d)\n", mx,my);
- for (int i=children(); i--; p += 4) {
- Fl_Widget* o = *a++;