Janos Blazi wrote: > > I think QColor.name() is not implemented in PyQt 3.1 (and if I remember > correctly QRegion.rects() is not implemented either). > Is there any special reason for that or has it been simply forgotten?
QColor.name() is implemented... Python 2.2.1 (#1, Apr 14 2002, 20:02:21) [GCC 2.95.2 19991024 (release)] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> import sys >>> from qt import * >>> a = QApplication(sys.argv) >>> str(Qt.red.name()) '#ff0000' >>> QRegion.rects() isn't implemented because it needs handwritten code and I was being lazy. Phil _______________________________________________ PyKDE mailing list [EMAIL PROTECTED] http://mats.gmd.de/mailman/listinfo/pykde
