TODO update, remove superfluous code that may cause problems on old PyQt

versions
This commit is contained in:
Kiooeht 2012-01-20 12:47:53 -08:00
parent 2f3cf9d703
commit 5015ac3979
2 changed files with 1 additions and 2 deletions

View file

@ -19,7 +19,6 @@ Features
* Use web connection to send offline messages in email-like fashion (Idea: ghostDunk)
* Use web connection to save profiles (Idea: ghostDunk)
* Better NickServ registering
* Unified data storage, OS-based user data location
* Spectation notices (Idea: lexicalNuance) (probly WONTFIX)
* Auto-login Nickserv
* Make toast notifications only on certain chums

View file

@ -26,7 +26,7 @@ class PesterList(list):
self.extend(l)
class PesterIcon(QtGui.QIcon):
def __init__(self, *x, **y):
def __init__(self, *x):
QtGui.QIcon.__init__(self, x[0])
if type(x[0]) in [str, unicode]:
self.icon_pixmap = QtGui.QPixmap(x[0])