diff options
author | nijtmans <nijtmans> | 2009-02-27 23:23:35 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2009-02-27 23:23:35 (GMT) |
commit | 2bd24991fb1306a2a230549895084b7424845fbe (patch) | |
tree | 06a8f93bcc5d7a6ab6a66ff97d59e2b67d7e6ceb /generic/tkInt.h | |
parent | 0aa2082226c7156d97ae4a66c508d1fd6ee421c4 (diff) | |
download | tk-2bd24991fb1306a2a230549895084b7424845fbe.zip tk-2bd24991fb1306a2a230549895084b7424845fbe.tar.gz tk-2bd24991fb1306a2a230549895084b7424845fbe.tar.bz2 |
[Feature Request 2636558] Tk_DefineBitmap
and Tk_GetBitmapFromData signature problem
Diffstat (limited to 'generic/tkInt.h')
-rw-r--r-- | generic/tkInt.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tkInt.h b/generic/tkInt.h index 41ba794..fd58d46 100644 --- a/generic/tkInt.h +++ b/generic/tkInt.h @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: $Id: tkInt.h,v 1.99 2008/12/28 13:08:39 dkf Exp $ + * RCS: $Id: tkInt.h,v 1.100 2009/02/27 23:23:35 nijtmans Exp $ */ #ifndef _TKINT @@ -681,7 +681,7 @@ typedef struct TkMainInfo { */ typedef struct { - const char *source; /* Bits for bitmap. */ + const void *source; /* Bits for bitmap. */ int width, height; /* Dimensions of bitmap. */ int native; /* 0 means generic (X style) bitmap, 1 means * native style bitmap. */ |