diff options
author | necoro <> | 2007-04-20 14:44:45 +0000 |
---|---|---|
committer | necoro <> | 2007-04-20 14:44:45 +0000 |
commit | 7a6f5b2c1d83fe62c62f0c30cad28eb091d52dfe (patch) | |
tree | c14d3a2f65fe0ff5799ba1673a73dc7ff3799d44 /portato/gui/gui_helper.py | |
parent | 524f67fb5a96f0f50b595023f46895e741654b59 (diff) | |
download | portato-7a6f5b2c1d83fe62c62f0c30cad28eb091d52dfe.tar.gz portato-7a6f5b2c1d83fe62c62f0c30cad28eb091d52dfe.tar.bz2 portato-7a6f5b2c1d83fe62c62f0c30cad28eb091d52dfe.zip |
Made qt plugin-ready; lots of documentation
Diffstat (limited to '')
-rw-r--r-- | portato/gui/gui_helper.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/portato/gui/gui_helper.py b/portato/gui/gui_helper.py index e52b3f3..5cc2ee6 100644 --- a/portato/gui/gui_helper.py +++ b/portato/gui/gui_helper.py @@ -30,7 +30,7 @@ import time import os import signal -class Config: +class Config: # XXX: This needs to be replaced - the const-dict is just messy """Wrapper around a ConfigParser and for additional local configurations.""" const = { "main_sec" : "Main", @@ -263,7 +263,9 @@ class EmergeQueue: @param console: Output is shown here. @type console: Console @param db: A database instance. - @type db: Database""" + @type db: Database + @param title_update: A function, which will be called whenever there is a title update. + @type title_update: function(string)""" # the different queues self.mergequeue = [] # for emerge |