diff options
author | dgp <dgp@users.sourceforge.net> | 2008-09-03 06:01:41 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2008-09-03 06:01:41 (GMT) |
commit | e55eded576910b03b6714dd50fcb46afcb5cb9ee (patch) | |
tree | 57b41e9a9569c1b36f8c361df8ce1d7c047891fd /generic/tkSelect.h | |
parent | 95e0e3514d5e3e55f91b743363ef64f1a2bfe738 (diff) | |
download | tk-e55eded576910b03b6714dd50fcb46afcb5cb9ee.zip tk-e55eded576910b03b6714dd50fcb46afcb5cb9ee.tar.gz tk-e55eded576910b03b6714dd50fcb46afcb5cb9ee.tar.bz2 |
* generic/tk.h: Dropped use of _ANSI_ARGS_ macro to preserve
* generic/tkSelect.h: Tk's TCL_NO_DEPRECATED build.
Diffstat (limited to 'generic/tkSelect.h')
-rw-r--r-- | generic/tkSelect.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/generic/tkSelect.h b/generic/tkSelect.h index 48f738a..921754c 100644 --- a/generic/tkSelect.h +++ b/generic/tkSelect.h @@ -9,7 +9,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkSelect.h,v 1.9 2007/12/13 15:24:16 dgp Exp $ + * RCS: @(#) $Id: tkSelect.h,v 1.10 2008/09/03 06:01:52 dgp Exp $ */ #ifndef _TKSELECT @@ -77,8 +77,7 @@ typedef struct TkSelRetrievalInfo { Atom selection; /* Selection being requested. */ Atom property; /* Property where selection will appear. */ Atom target; /* Desired form for selection. */ - int (*proc) _ANSI_ARGS_((ClientData clientData, Tcl_Interp *interp, - char *portion)); /* Procedure to call to handle pieces of + int (*proc) (ClientData clientData, Tcl_Interp *interp, char *portion); /* Procedure to call to handle pieces of * selection. */ ClientData clientData; /* Argument for proc. */ int result; /* Initially -1. Set to a Tcl return value |