diff options
-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 |