diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2007-04-17 15:25:08 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2007-04-17 15:25:08 (GMT) |
commit | 85f6905c50918a0ff282d5897620c1768a2e326d (patch) | |
tree | ecaa5bc384ef626c357cfc7c510c083b23e1cf6b | |
parent | 9d3fb25e65ee2569dfcb580c58e9ad0fad7e10a5 (diff) | |
download | tk-85f6905c50918a0ff282d5897620c1768a2e326d.zip tk-85f6905c50918a0ff282d5897620c1768a2e326d.tar.gz tk-85f6905c50918a0ff282d5897620c1768a2e326d.tar.bz2 |
Fix indentation error
-rw-r--r-- | generic/tk.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/generic/tk.h b/generic/tk.h index 3a5343d..da72a5f 100644 --- a/generic/tk.h +++ b/generic/tk.h @@ -12,7 +12,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tk.h,v 1.95 2007/01/28 01:42:16 das Exp $ + * RCS: @(#) $Id: tk.h,v 1.96 2007/04/17 15:25:08 dkf Exp $ */ #ifndef _TK @@ -161,11 +161,11 @@ typedef struct Tk_OptionSpec { Tk_OptionType type; /* Type of option, such as TK_OPTION_COLOR; * see definitions above. Last option in table * must have type TK_OPTION_END. */ - const char *optionName; /* Name used to specify option in Tcl + const char *optionName; /* Name used to specify option in Tcl * commands. */ const char *dbName; /* Name for option in option database. */ - const char *dbClass; /* Class for option in database. */ - const char *defValue; /* Default value for option if not specified + const char *dbClass; /* Class for option in database. */ + const char *defValue; /* Default value for option if not specified * in command line, the option database, or * the system. */ int objOffset; /* Where in record to store a Tcl_Obj * that |