Re: [PyKDE] Simple KHtml program crashing at exit

2005-08-11 Thread David Boddie
On Thursday 11 August 2005 19:23, Jim Bublitz wrote: > (Somehow I received this with the leftmost characters missing on every > line - data compression?) It's the usual result when various pieces of software disagree on the way text is encoded. I usually try very hard to avoid getting that effec

Re: [PyKDE] Simple KHtml program crashing at exit

2005-08-11 Thread Jim Bublitz
On Thursday 11 August 2005 10:03, David Boddie wrote: > looked at some of my own experiments with using KHTML from > ython, and found that you can at least stop the crash on exit by > mplementing a close method: > >def close(self, alsoDelete = 1): >return HWidget.close(self, 1) > > ote

Re: [PyKDE] Simple KHtml program crashing at exit

2005-08-11 Thread David Boddie
On Wed, 10 Aug 2005 10:16:32, Ismail Dönmez wrote: I have a very simple Khtml program like this ...] from qt import * from hwidget import HWidget import khtml from kdecore import KApplication, KCmdLineArgs, KAboutData class HtmlWidget(HWidget): def __init__(self, parent=None, name="

[PyKDE] Simple KHtml program crashing at exit

2005-08-10 Thread İsmail Dönmez
Hi all, I have a very simple Khtml program like this == demo.py: == #!/usr/bin/env python # -*- coding: utf-8 -*- from qt import * from hwidget import HWidget import khtml from kdecore import KApplication, KCmdLineArgs, KAboutData class HtmlWidget(HWidget): def __init__(sel