I m compiling and running a gtk app and i get that error while running when I try to put a button in an hbox. What does this error mean/how can I fix this. I get this when running it through the terminal, and somehow GTK prints this when I push a button that runs this function:
void ButtonHandler(void) {
GtkWidget (*Button) = NULL;
GtkWidget (*Entry) = gtk_entry_new();
GtkWidget (*Vbox) = gtk_vbox_new(0, 8);
GtkWidget (*Hbox) = gtk_hbox_new(0, 8);
FILE (*SelectedWorld);
gtk_container_add(GTK_CONTAINER(Vbox), Hbox);
gtk_box_pack_start(GTK_BOX(Vbox), Entry, 1, 1, 0);
gtk_box_pack_start(GTK_BOX(Hbox),Button, 1, 1, 0);//<---- here is the problem
printf("Button pushed\n");
}