summaryrefslogtreecommitdiffstats
path: root/generic/tkTextImage.c
diff options
context:
space:
mode:
authornijtmans <nijtmans>2007-01-18 23:20:37 (GMT)
committernijtmans <nijtmans>2007-01-18 23:20:37 (GMT)
commit363c82a543b016cf30ea86ff60fcebcd66c64564 (patch)
treee80900db52b451a6b7bbc89772414d0e5c8c3907 /generic/tkTextImage.c
parent6c75da00b675108a826e392e827698d4eeb5e4cf (diff)
downloadtk-363c82a543b016cf30ea86ff60fcebcd66c64564.zip
tk-363c82a543b016cf30ea86ff60fcebcd66c64564.tar.gz
tk-363c82a543b016cf30ea86ff60fcebcd66c64564.tar.bz2
various "const" additions, in line with TIP #27
Diffstat (limited to 'generic/tkTextImage.c')
-rw-r--r--generic/tkTextImage.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/generic/tkTextImage.c b/generic/tkTextImage.c
index 77f3fa5..d290250 100644
--- a/generic/tkTextImage.c
+++ b/generic/tkTextImage.c
@@ -9,7 +9,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.18 2007/01/03 05:06:26 nijtmans Exp $
+ * RCS: @(#) $Id: tkTextImage.c,v 1.19 2007/01/18 23:20:37 nijtmans Exp $
*/
#include "tk.h"
@@ -37,7 +37,7 @@ static void EmbImageBboxProc(TkText *textPtr,
int *widthPtr, int *heightPtr);
static int EmbImageConfigure(TkText *textPtr,
TkTextSegment *eiPtr, int objc,
- Tcl_Obj *CONST objv[]);
+ Tcl_Obj *const objv[]);
static int EmbImageDeleteProc(TkTextSegment *segPtr,
TkTextLine *linePtr, int treeGone);
static void EmbImageDisplayProc(TkText *textPtr,
@@ -57,7 +57,7 @@ static void EmbImageProc(ClientData clientData, int x, int y,
* The following structure declares the "embedded image" segment type.
*/
-static Tk_SegType tkTextEmbImageType = {
+static const Tk_SegType tkTextEmbImageType = {
"image", /* name */
0, /* leftGravity */
NULL, /* splitProc */
@@ -124,14 +124,14 @@ TkTextImageCmd(
register TkText *textPtr, /* Information about text widget. */
Tcl_Interp *interp, /* Current interpreter. */
int objc, /* Number of arguments. */
- Tcl_Obj *CONST objv[]) /* Argument objects. Someone else has already
+ Tcl_Obj *const objv[]) /* Argument objects. Someone else has already
* parsed this command enough to know that
* objv[1] is "image". */
{
int idx;
register TkTextSegment *eiPtr;
TkTextIndex index;
- static CONST char *optionStrings[] = {
+ static const char *optionStrings[] = {
"cget", "configure", "create", "names", NULL
};
enum opts {
@@ -319,7 +319,7 @@ EmbImageConfigure(
* embedded image. */
TkTextSegment *eiPtr, /* Embedded image to be configured. */
int objc, /* Number of strings in objv. */
- Tcl_Obj *CONST objv[]) /* Array of strings describing configuration
+ Tcl_Obj *const objv[]) /* Array of strings describing configuration
* options. */
{
Tk_Image image;
@@ -773,7 +773,7 @@ EmbImageBboxProc(
int
TkTextImageIndex(
TkText *textPtr, /* Text widget containing image. */
- CONST char *name, /* Name of image. */
+ const char *name, /* Name of image. */
TkTextIndex *indexPtr) /* Index information gets stored here. */
{
Tcl_HashEntry *hPtr;