Вот кусок кода который я использую
...
self.trayIconPixmap = QtGui.QIcon('img.jpg')
painter = QtGui.QPainter()
painter.begin( self.trayIconPixmap.pixmap(16, 16, QtGui.QIcon.Normal, QtGui.QIcon.On) )
painter.drawText( QtCore.QRectF( QtCore.QRect(1, 1, 16, 16) ), QtCore.QString('11') )
painter.end()
self.trayIconPixmap.paint(painter, 1, 1, 16, 16)
self.trayIcon = QtGui.QSystemTrayIcon(self)
self.trayIcon.setContextMenu(self.trayIconMenu)
self.trayIcon.setIcon( self.trayIconPixmap )
StdErr: QPaintDevice: Cannot destroy paint device that is being painted. Be sure to QPainter::end() painters!
подскажите пожалуйста что я упустил?!