Re: [PyQt] Bug report: crash when using QSytemTrayIcon

2010-03-15 Thread Phil Thompson
On Mon, 15 Mar 2010 15:40:14 +0300, z wrote: > 2010/3/15 Phil Thompson > >> On Mon, 15 Mar 2010 15:12:01 +0300, z wrote: >> > 2010/3/15 Phil Thompson >> > >> >> On Sun, 14 Mar 2010 22:06:02 +0300, z wrote: >> >> > 2010/3/5 Phil Thompson >> >> > >> >> >> On Fri, 5 Mar 2010 00:35:21 +0100, Kiw

Re: [PyQt] Bug report: crash when using QSytemTrayIcon

2010-03-15 Thread z
2010/3/15 Phil Thompson > On Mon, 15 Mar 2010 15:12:01 +0300, z wrote: > > 2010/3/15 Phil Thompson > > > >> On Sun, 14 Mar 2010 22:06:02 +0300, z wrote: > >> > 2010/3/5 Phil Thompson > >> > > >> >> On Fri, 5 Mar 2010 00:35:21 +0100, Kiwi > wrote: > >> >> > Hi, > >> >> > I'm totally new to Py

Re: [PyQt] Bug report: crash when using QSytemTrayIcon

2010-03-15 Thread Phil Thompson
On Mon, 15 Mar 2010 15:12:01 +0300, z wrote: > 2010/3/15 Phil Thompson > >> On Sun, 14 Mar 2010 22:06:02 +0300, z wrote: >> > 2010/3/5 Phil Thompson >> > >> >> On Fri, 5 Mar 2010 00:35:21 +0100, Kiwi wrote: >> >> > Hi, >> >> > I'm totally new to PyQt programming. >> >> > While I was writing a

Re: [PyQt] Bug report: crash when using QSytemTrayIcon

2010-03-15 Thread z
2010/3/15 Phil Thompson > On Sun, 14 Mar 2010 22:06:02 +0300, z wrote: > > 2010/3/5 Phil Thompson > > > >> On Fri, 5 Mar 2010 00:35:21 +0100, Kiwi wrote: > >> > Hi, > >> > I'm totally new to PyQt programming. > >> > While I was writing a very simple app for the system tray I think I > >> > fou

Re: [PyQt] Bug report: crash when using QSytemTrayIcon

2010-03-15 Thread Phil Thompson
On Sun, 14 Mar 2010 22:06:02 +0300, z wrote: > 2010/3/5 Phil Thompson > >> On Fri, 5 Mar 2010 00:35:21 +0100, Kiwi wrote: >> > Hi, >> > I'm totally new to PyQt programming. >> > While I was writing a very simple app for the system tray I think I >> > found >> a >> > bug. >> > Here is a simple t

Re: [PyQt] Bug report: crash when using QSytemTrayIcon

2010-03-14 Thread z
2010/3/5 Phil Thompson > On Fri, 5 Mar 2010 00:35:21 +0100, Kiwi wrote: > > Hi, > > I'm totally new to PyQt programming. > > While I was writing a very simple app for the system tray I think I found > a > > bug. > > Here is a simple testcase: > > > > # -*- coding: utf-8 -*- > > import sys > > fr

Re: [PyQt] Bug report: crash when using QSytemTrayIcon

2010-03-05 Thread Phil Thompson
On Fri, 5 Mar 2010 00:35:21 +0100, Kiwi wrote: > Hi, > I'm totally new to PyQt programming. > While I was writing a very simple app for the system tray I think I found a > bug. > Here is a simple testcase: > > # -*- coding: utf-8 -*- > import sys > from PyQt4 import QtGui, QtCore > > app = QtGui

[PyQt] Bug report: crash when using QSytemTrayIcon

2010-03-04 Thread Kiwi
Hi, I'm totally new to PyQt programming. While I was writing a very simple app for the system tray I think I found a bug. Here is a simple testcase: # -*- coding: utf-8 -*- import sys from PyQt4 import QtGui, QtCore app = QtGui.QApplication(sys.argv) tray = QtGui.QSystemTrayIcon() def a(): pass