summaryrefslogtreecommitdiffstats
path: root/generic/tkText.h
diff options
context:
space:
mode:
authorhobbs <hobbs>2001-12-05 18:18:22 (GMT)
committerhobbs <hobbs>2001-12-05 18:18:22 (GMT)
commitb7bbedf86ce0a3f6ffcad02a2baeba7b029dc749 (patch)
tree23b34a82123c018dfbc6e4156a193d94afbfb35d /generic/tkText.h
parentaa7d34e3d9891f7c20a5afdbb7b40d6c8d8f0392 (diff)
downloadtk-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.h8
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 */