diff options
author | nijtmans <nijtmans> | 2010-04-23 08:32:56 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2010-04-23 08:32:56 (GMT) |
commit | 0ec04490736cdf3891388a3a1e9cf8e8cef380f5 (patch) | |
tree | e7500d00ecdd547d4dd0332a138be0f97387ffe9 /generic/tkUndo.h | |
parent | a5fa2276832bf18cf14cded757a1e15068a422ec (diff) | |
download | tk-0ec04490736cdf3891388a3a1e9cf8e8cef380f5.zip tk-0ec04490736cdf3891388a3a1e9cf8e8cef380f5.tar.gz tk-0ec04490736cdf3891388a3a1e9cf8e8cef380f5.tar.bz2 |
Formatting
typo fixes
remove not existing tkDisplayList;
Useless re-definitions of TCL_STORAGE_CLASS
Diffstat (limited to 'generic/tkUndo.h')
-rw-r--r-- | generic/tkUndo.h | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/generic/tkUndo.h b/generic/tkUndo.h index 0776ea3..25a97e9 100644 --- a/generic/tkUndo.h +++ b/generic/tkUndo.h @@ -8,7 +8,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkUndo.h,v 1.8 2007/12/13 15:24:21 dgp Exp $ + * RCS: @(#) $Id: tkUndo.h,v 1.9 2010/04/23 08:32:56 nijtmans Exp $ */ #ifndef _TKUNDO @@ -18,13 +18,8 @@ #include "tkInt.h" #endif -#ifdef BUILD_tk -# undef TCL_STORAGE_CLASS -# define TCL_STORAGE_CLASS DLLEXPORT -#endif - /* - * Enum definining the types used in an undo stack. + * Enum defining the types used in an undo stack. */ typedef enum { @@ -117,7 +112,4 @@ MODULE_SCOPE void TkUndoPushAction(TkUndoRedoStack *stack, MODULE_SCOPE int TkUndoRevert(TkUndoRedoStack *stack); MODULE_SCOPE int TkUndoApply(TkUndoRedoStack *stack); -# undef TCL_STORAGE_CLASS -# define TCL_STORAGE_CLASS DLLIMPORT - #endif /* _TKUNDO */ |