diff options
author | dgp <dgp@users.sourceforge.net> | 2006-10-17 05:38:47 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2006-10-17 05:38:47 (GMT) |
commit | f8d578503dab648a62cf5b5c7c1145b070f2e3fe (patch) | |
tree | a2cea6c053329bdf2122105683e71790b54ea928 /generic/tkText.c | |
parent | 2567eaac30676728cb04c5569e02d6f57d0dfe24 (diff) | |
download | tk-f8d578503dab648a62cf5b5c7c1145b070f2e3fe.zip tk-f8d578503dab648a62cf5b5c7c1145b070f2e3fe.tar.gz tk-f8d578503dab648a62cf5b5c7c1145b070f2e3fe.tar.bz2 |
* generic/tkPanedWindow.c: Cleaned up some code flagged by a
* generic/tkText.c: `make checkexports` test.
* generic/tkText.h
* generic/tkTextTag.c:
Diffstat (limited to 'generic/tkText.c')
-rw-r--r-- | generic/tkText.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tkText.c b/generic/tkText.c index 750d0d8..0c0f44f 100644 --- a/generic/tkText.c +++ b/generic/tkText.c @@ -14,7 +14,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.c,v 1.33.2.4 2006/09/10 17:07:35 das Exp $ + * RCS: @(#) $Id: tkText.c,v 1.33.2.5 2006/10/17 05:38:48 dgp Exp $ */ #include "default.h" @@ -140,7 +140,7 @@ static Tk_ConfigSpec configSpecs[] = { {TK_CONFIG_INT, "-width", "width", "Width", DEF_TEXT_WIDTH, Tk_Offset(TkText, width), 0}, {TK_CONFIG_CUSTOM, "-wrap", "wrap", "Wrap", - DEF_TEXT_WRAP, Tk_Offset(TkText, wrapMode), 0, &textWrapModeOption}, + DEF_TEXT_WRAP, Tk_Offset(TkText, wrapMode), 0, &TkTextWrapModeOption}, {TK_CONFIG_STRING, "-xscrollcommand", "xScrollCommand", "ScrollCommand", DEF_TEXT_XSCROLL_COMMAND, Tk_Offset(TkText, xScrollCmd), TK_CONFIG_NULL_OK}, @@ -169,7 +169,7 @@ static char * WrapModePrintProc _ANSI_ARGS_((ClientData clientData, Tk_Window tkwin, char *widgRec, int offset, Tcl_FreeProc **freeProcPtr)); -Tk_CustomOption textWrapModeOption = { +Tk_CustomOption TkTextWrapModeOption = { WrapModeParseProc, WrapModePrintProc, (ClientData) NULL |