New answers tagged debugging
0
The KDbg is available from the Ubuntu repositories: http://packages.ubuntu.com/search?keywords=kdbg&searchon=names&suite=all§ion=all
Package kdbg
lucid (devel): graphical debugger interface [universe]
2.2.0-2ubuntu1: amd64 i386
precise (devel): graphical debugger interface [universe]
2.5.0-1: amd64 i386
quantal (devel): graphical ...
1
You problem is that you're mixing a GTK3 interface with old PyGTK (GTK2) Python code.
Here's the ported code:
#!/usr/bin/env python
from gi.repository import Gtk
class TutorialApp(object):
def __init__(self):
builder = Gtk.Builder()
builder.add_from_file("tutorial.xml")
builder.connect_signals({ "on_window_delete_event" : ...
Top 50 recent answers are included