diff options
author | stanton <stanton> | 1998-07-28 17:28:45 (GMT) |
---|---|---|
committer | stanton <stanton> | 1998-07-28 17:28:45 (GMT) |
commit | c0c053c23c5a754890557229698bf98f5a6a04e5 (patch) | |
tree | ccc46c60b1f8c61ced62c6dcc0e56e7f9fd29207 /generic/tkBitmap.c | |
parent | 385ebc1df608cdf7349f85391e735ef0b87a1b60 (diff) | |
download | tk-c0c053c23c5a754890557229698bf98f5a6a04e5.zip tk-c0c053c23c5a754890557229698bf98f5a6a04e5.tar.gz tk-c0c053c23c5a754890557229698bf98f5a6a04e5.tar.bz2 |
replaced _Xconst with CONST
Diffstat (limited to 'generic/tkBitmap.c')
-rw-r--r-- | generic/tkBitmap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tkBitmap.c b/generic/tkBitmap.c index cf32e96..c081d24 100644 --- a/generic/tkBitmap.c +++ b/generic/tkBitmap.c @@ -606,7 +606,7 @@ Pixmap TkCreateBitmapFromData(display, d, data, width, height) Display* display; Drawable d; - _Xconst char* data; + CONST char* data; unsigned int width; unsigned int height; { @@ -659,7 +659,7 @@ TkReadBitmapFile(display, d, filename, width_return, height_return, bitmap_return, x_hot_return, y_hot_return) Display* display; Drawable d; - _Xconst char* filename; + CONST char* filename; unsigned int* width_return; unsigned int* height_return; Pixmap* bitmap_return; |