passing arg 1 of `gtk_widget_show' from incompatible pointer type
Hi,
i get a warning from my gcc compiler concerning some GTK+ source code:
gtk_gui.c:1900: warning: passing arg 1 of `gtk_widget_show' from incompatible pointer type
Here's the code with initalisation:
GtkImage *Image[30];
gtk_image_set_from_file (Image[i-index_artikel],bild_file);
gtk_widget_show (Image[i-index_artikel]);
** bild_file is the right path to the images **
So where's the prob? i am not allowed to directly show an image in an array by gtk_widget_show?
Hope someone can help me here.
Thx in advance!
Benni
|