TODO update, remove superfluous code that may cause problems on old PyQt
versions
This commit is contained in:
parent
2f3cf9d703
commit
5015ac3979
2 changed files with 1 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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])
|
||||
|
|
Loading…
Reference in a new issue