Suppress a warning.

This commit is contained in:
Jay Dolan 2015-02-10 10:08:05 -05:00
parent 2beef62683
commit 636b1010b3
1 changed files with 1 additions and 1 deletions

View File

@ -732,7 +732,7 @@ GtkWidget* new_pixmap( GtkWidget* widget, const char* filename ){
GtkWidget* new_image_icon(const char* filename) {
CString str = g_strBitmapsPath;
str += filename;
return gtk_image_new_from_file(str);
return gtk_image_new_from_file( (const char *) str );
}
// =============================================================================