Scott Pierce wrote: > Has anyone seen this? If not, I'll post more info but when I run the app > created by the Class Designer this is the error just prior to segfault. > > Full Error: > > (python:27344): Gtk-CRITICAL **: gtk_tooltips_set_tip: assertion `widget != > NULL' failed
These messages are common on Gtk, and don't appear to be tied to anything bad. > Segmentation fault Now that's bad. ;) > I went back and filled in my tool tip properties just in case but it looks > like it is attempting to create a tooltip for a widget that doesn't exist > and not liking that so much. > > My wxpython version: > wxPython Version: 2.8.7.1 wxGTK (unicode) (gtk2) > > and the cdxml and python attached (created by the class designer). Can't send attachments here. You should open a ticket on our bug tracker, and attach your files there. First register for an account, then log in, and then choose "new ticket". http://trac.dabodev.com Seg faults are difficult to track down. I suggest littering your python code with 'print 1', 'print 2', etc. You'll get an idea where in the code is failing. My prediction is that you are sending an incompatible parent to a new object, perhaps sending self instead of the actual parent. Welcome to these parts! Paul _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-users Searchable Archives: http://leafe.com/archives/search/dabo-users This message: http://leafe.com/archives/byMID/[EMAIL PROTECTED]
