mirror of
https://github.com/TTimo/GtkRadiant.git
synced 2024-11-10 07:11:54 +00:00
Fix another char cast in gtkmisc.cpp.
This commit is contained in:
parent
fad4aff018
commit
576823a4e3
1 changed files with 2 additions and 2 deletions
|
@ -706,8 +706,8 @@ bool WINAPI load_plugin_bitmap( const char* filename, void **gdkpixmap, void **m
|
||||||
bmp_to_pixmap( str.GetBuffer(), (GdkPixmap **)gdkpixmap, (GdkBitmap **)mask );
|
bmp_to_pixmap( str.GetBuffer(), (GdkPixmap **)gdkpixmap, (GdkBitmap **)mask );
|
||||||
|
|
||||||
if ( *gdkpixmap == NULL ) {
|
if ( *gdkpixmap == NULL ) {
|
||||||
gchar *dummy[] = { "1 1 1 1", " c None", " " };
|
const gchar *dummy[] = { "1 1 1 1", " c None", " " };
|
||||||
*gdkpixmap = gdk_pixmap_create_from_xpm_d( gdk_get_default_root_window(), (GdkBitmap **)mask, NULL, dummy );
|
*gdkpixmap = gdk_pixmap_create_from_xpm_d( gdk_get_default_root_window(), (GdkBitmap **)mask, NULL, (gchar **)dummy );
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue