2010-09-05 09:04:43 -04:00
|
|
|
$OpenBSD: patch-Tk_tkImaging_c,v 1.4 2010/09/05 13:04:43 sthen Exp $
|
|
|
|
--- Tk/tkImaging.c.orig Sun Dec 3 11:37:29 2006
|
|
|
|
+++ Tk/tkImaging.c Sun Sep 5 13:59:42 2010
|
|
|
|
@@ -240,8 +240,8 @@ PyImagingPhotoGet(ClientData clientdata, Tcl_Interp* i
|
2004-05-23 11:58:01 -04:00
|
|
|
void
|
|
|
|
TkImaging_Init(Tcl_Interp* interp)
|
|
|
|
{
|
2005-11-20 08:59:50 -05:00
|
|
|
- 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,
|
2004-05-23 11:58:01 -04:00
|
|
|
(ClientData) 0, (Tcl_CmdDeleteProc*) NULL);
|
2003-12-27 18:40:18 -05:00
|
|
|
}
|