1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-06 22:51:41 +00:00
freebsd-ports/net/irrtoolset/files/patch-aj
Steve Price 8fb1a5c117 Update to version 4.5.0.
Requested by:	rgrimes
Submitted by:	Ade Lovett <ade@lovett.com>
1999-12-10 15:52:22 +00:00

15 lines
424 B
Plaintext

--- src/aoe/TclApp.cc.orig Thu Apr 23 21:52:07 1998
+++ src/aoe/TclApp.cc Mon Nov 29 09:12:33 1999
@@ -191,9 +191,9 @@
// Call Tcl function to create a Tcl command
if (Tcl_CreateCommand(ptInterp,
pcCommand->getName(),
- TclCommand::command,
+ &TclCommand::command,
(ClientData)pcCommand,
- TclCommand::cleanUp) == NULL) return 0;
+ &TclCommand::cleanUp) == NULL) return 0;
return 1;
}