Re: [PyQt] simple newb question

2008-08-08 Thread Phil Thompson
On Thu, 07 Aug 2008 21:04:14 -0400, Neal Becker [EMAIL PROTECTED] wrote: import sys from PyQt4.QtCore import * from PyQt4.QtGui import * app = QApplication (sys.argv) ret = QMessageBox.question (None, My App, You have mail) print ret Why doesn't this display any icon? The docs say that

[PyQt] simple newb question

2008-08-07 Thread Neal Becker
import sys from PyQt4.QtCore import * from PyQt4.QtGui import * app = QApplication (sys.argv) ret = QMessageBox.question (None, My App, You have mail) print ret Why doesn't this display any icon? The docs say that I should see an icon, varying with whether I used '.question', or '.warning',