diff options
author | hobbs <hobbs> | 2001-12-05 18:18:22 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2001-12-05 18:18:22 (GMT) |
commit | b7bbedf86ce0a3f6ffcad02a2baeba7b029dc749 (patch) | |
tree | 23b34a82123c018dfbc6e4156a193d94afbfb35d /generic/tkText.h | |
parent | aa7d34e3d9891f7c20a5afdbb7b40d6c8d8f0392 (diff) | |
download | tk-b7bbedf86ce0a3f6ffcad02a2baeba7b029dc749.zip tk-b7bbedf86ce0a3f6ffcad02a2baeba7b029dc749.tar.gz tk-b7bbedf86ce0a3f6ffcad02a2baeba7b029dc749.tar.bz2 |
* generic/tkText.c:
* generic/tkText.h: changed TkTextEditType enums to be prefaced
with TK_EDIT_ to prevent name collision.
Diffstat (limited to 'generic/tkText.h')
-rw-r--r-- | generic/tkText.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/generic/tkText.h b/generic/tkText.h index b9e4727..8afbea8 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.8 2001/11/13 00:19:05 hobbs Exp $ + * RCS: @(#) $Id: tkText.h,v 1.9 2001/12/05 18:18:22 hobbs Exp $ */ #ifndef _TKTEXT @@ -454,9 +454,9 @@ typedef struct TkTextTabArray { /* enum definining the types used in an edit stack */ typedef enum { - SEPARATOR, /* Marker */ - INSERT, /* The undo is an insert */ - DELETE /* The undo is a delete */ + TK_EDIT_SEPARATOR, /* Marker */ + TK_EDIT_INSERT, /* The undo is an insert */ + TK_EDIT_DELETE /* The undo is a delete */ } TkTextEditType; /* strcut defining the basic undo/redo stack element */ |