openbsd-ports/graphics/py-Imaging/patches/patch-Tk_tkImaging_c
alek 183026ac1d - Update to 1.1.5
- Remove -examples subpackage
2005-11-20 13:59:50 +00:00

15 lines
714 B
Plaintext

$OpenBSD: patch-Tk_tkImaging_c,v 1.3 2005/11/20 13:59:50 alek Exp $
--- Tk/tkImaging.c.orig Sat Sep 11 22:05:11 2004
+++ Tk/tkImaging.c Fri Nov 11 15:03:32 2005
@@ -240,8 +240,8 @@ PyImagingPhotoGet(ClientData clientdata,
void
TkImaging_Init(Tcl_Interp* interp)
{
- Tcl_CreateCommand(interp, "PyImagingPhoto", PyImagingPhotoPut,
+ Tcl_CreateCommand(interp, "PyImagingPhoto", (Tcl_CmdProc *) PyImagingPhotoPut,
(ClientData) 0, (Tcl_CmdDeleteProc*) NULL);
- Tcl_CreateCommand(interp, "PyImagingPhotoGet", PyImagingPhotoGet,
+ Tcl_CreateCommand(interp, "PyImagingPhotoGet", (Tcl_CmdProc *) PyImagingPhotoGet,
(ClientData) 0, (Tcl_CmdDeleteProc*) NULL);
}