diff options
author | davygrvy <davygrvy> | 2002-12-27 23:43:38 (GMT) |
---|---|---|
committer | davygrvy <davygrvy> | 2002-12-27 23:43:38 (GMT) |
commit | 5765ca0d5beb52496528ec6fc4da96dcee1d9f3d (patch) | |
tree | 1a85d14fa88f0404cae9ba833d4de8127ca466d6 | |
parent | 9c5a098a155068a728d1af4451ec854dacfd071f (diff) | |
download | tk-5765ca0d5beb52496528ec6fc4da96dcee1d9f3d.zip tk-5765ca0d5beb52496528ec6fc4da96dcee1d9f3d.tar.gz tk-5765ca0d5beb52496528ec6fc4da96dcee1d9f3d.tar.bz2 |
ANSI unfriendly typedef for TkTextBTree repaired for C++ compilers.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | generic/tkText.h | 4 |
2 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2002-12-27 David Gravereaux <davygrvy@pobox.com> + + * generic/tkText.h: ANSI unfriendly typedef for TkTextBTree + repaired for C++ compilers. + 2002-12-27 Joe English <jenglish@users.sourceforge.net> * unix/tkUnixWm.c (WaitForEvent): process Map and Unmap events as well as Configure events during WaitFor{Configure|Map}Notify. diff --git a/generic/tkText.h b/generic/tkText.h index 3d93532..a8ed021 100644 --- a/generic/tkText.h +++ b/generic/tkText.h @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkText.h,v 1.12 2002/08/05 04:30:40 dgp Exp $ + * RCS: @(#) $Id: tkText.h,v 1.13 2002/12/27 23:43:38 davygrvy Exp $ */ #ifndef _TKTEXT @@ -34,7 +34,7 @@ * file: */ -typedef struct TkTextBTree *TkTextBTree; +typedef struct TkTextBTree_ *TkTextBTree; /* * The data structure below defines a single line of text (from newline |