diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2003-09-29 23:15:18 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2003-09-29 23:15:18 (GMT) |
commit | dc24f0b30e8fbb81e9012b809dae38285844a640 (patch) | |
tree | 17d2b2dbfc25eb233c8b2a045f9dbaf3c410056a /generic/tkTextImage.c | |
parent | 0f9217cf63ff7594570b15dfdd6398cda1c88d8c (diff) | |
download | tk-dc24f0b30e8fbb81e9012b809dae38285844a640.zip tk-dc24f0b30e8fbb81e9012b809dae38285844a640.tar.gz tk-dc24f0b30e8fbb81e9012b809dae38285844a640.tar.bz2 |
Private functions should be either static or prefixed with 'Tk' (thanks GPS!)
Diffstat (limited to 'generic/tkTextImage.c')
-rw-r--r-- | generic/tkTextImage.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tkTextImage.c b/generic/tkTextImage.c index a7ae581..ef3dd93 100644 --- a/generic/tkTextImage.c +++ b/generic/tkTextImage.c @@ -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: tkTextImage.c,v 1.7 2003/05/19 14:37:20 dkf Exp $ + * RCS: @(#) $Id: tkTextImage.c,v 1.8 2003/09/29 23:15:20 dkf Exp $ */ #include "tk.h" @@ -314,7 +314,7 @@ EmbImageConfigure(textPtr, eiPtr, objc, objv) unsigned int len; /* length of image name */ CONST char **argv; - argv = GetStringsFromObjs(objc, objv); + argv = TkGetStringsFromObjs(objc, objv); if (Tk_ConfigureWidget(textPtr->interp, textPtr->tkwin, configSpecs, objc, argv, (char *) &eiPtr->body.ei,TK_CONFIG_ARGV_ONLY) != TCL_OK) { |