diff options
author | kali <kali@leap.se> | 2012-09-04 06:37:45 +0900 |
---|---|---|
committer | kali <kali@leap.se> | 2012-09-04 06:37:45 +0900 |
commit | 1826d9a0d5400c21a3f7af73eda2e843f0639271 (patch) | |
tree | a65370738b48ad7ab7d4f35e711fddb5c73ad49b /src/leap/baseapp/systray.py | |
parent | b0b2b342b698bbe5851e9312cd830938f8d564a5 (diff) |
add little docstrings to classes
Diffstat (limited to 'src/leap/baseapp/systray.py')
-rw-r--r-- | src/leap/baseapp/systray.py | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/leap/baseapp/systray.py b/src/leap/baseapp/systray.py index 249a4f7e..3fb64db1 100644 --- a/src/leap/baseapp/systray.py +++ b/src/leap/baseapp/systray.py @@ -5,16 +5,20 @@ from leap.gui import mainwindow_rc class StatusAwareTrayIcon(object): + """ + a mix of several functions needed + to create a systray and make it + get updated from conductor status + polling. + """ def __init__(self, *args, **kwargs): - # StatusAwareTrayIcon init ################### self.createIconGroupBox() self.createActions() self.createTrayIcon() - self.trayIcon.show() - ############################################## + # not sure if this really belongs here, but... self.timer = QtCore.QTimer() def createIconGroupBox(self): |