I just reinstalled gtk+3.  All my gtk programs get this error.  This short 
program causes the error:
/*
  compilation:
  $ a=./c && gcc $a.c $( pkg-config --cflags gtk+-3.0 ) $( pkg-config --libs 
gtk+-3.0 ) -o $a && $a
*/
#include<gtk/gtk.h>
int main(int ac,char**av) {
  GtkWidget*w;
  gtk_init(&ac,&av);
  w = gtk_window_new(GTK_WINDOW_TOPLEVEL);
  g_signal_connect(w,"destroy",G_CALLBACK(gtk_main_quit),NULL);
  gtk_widget_show(w);
  gtk_main();
  return 0;
}

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1061554

Title:
  assertion failure `trap != NULL' displayed by all GTK3 software

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+bug/1061554/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to