summaryrefslogtreecommitdiff
path: root/multimedia/mpegedit/files/patch-ae
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2000-09-23 01:36:53 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2000-09-23 01:36:53 +0000
commit8c7499bdfa85657ea6c2517ada0ef4a4db489beb (patch)
tree1c37a6088704b234484b1352cd1f882fb2a253ad /multimedia/mpegedit/files/patch-ae
parentCatch up with Wnn6-lib update. (diff)
This commit was manufactured by cvs2svn to create tag 'RELEASE_4_1_1'.release/4.1.1
Diffstat (limited to 'multimedia/mpegedit/files/patch-ae')
-rw-r--r--multimedia/mpegedit/files/patch-ae29
1 files changed, 0 insertions, 29 deletions
diff --git a/multimedia/mpegedit/files/patch-ae b/multimedia/mpegedit/files/patch-ae
deleted file mode 100644
index 0d0c423b6547..000000000000
--- a/multimedia/mpegedit/files/patch-ae
+++ /dev/null
@@ -1,29 +0,0 @@
---- editor/bw_window.C.orig Mon May 8 16:15:00 1995
-+++ editor/bw_window.C Thu Feb 3 21:29:23 2000
-@@ -24,6 +24,8 @@
- #include <assert.h>
- #include <stdlib.h>
-
-+extern "C" int XShmGetEventBase(Display *);
-+
- BwWindow::BwWindow(UI_Globals *parent,world_c x,world_c y,unsigned int height,
- unsigned int width, void (*cb)(void) )
- : YUV_Window(parent,x,y,height,width,this, ButtonPressMask |
-@@ -143,7 +145,7 @@
- height,8,0);
- ximage->byte_order = MSBFirst;
- ximage->bitmap_bit_order = MSBFirst;
-- ximage->data = new byte[ximage->bytes_per_line*height];
-+ ximage->data = (char *) new byte[ximage->bytes_per_line*height];
- assert(ximage->data!=NULL);
- #ifdef SH_MEM
- }
-@@ -213,7 +215,7 @@
- {
- assert(Frame.width()==ximage->width);
- assert(Frame.height()==ximage->height);
-- DitherImage(Frame.lum_ptr(),ximage->data,ximage->height,ximage->width);
-+ DitherImage(Frame.lum_ptr(),(unsigned char*)ximage->data,ximage->height,ximage->width);
- if(nicely)
- {
- XEvent Event;