diff options
Diffstat (limited to 'invest-applet/invest/help.py')
-rw-r--r-- | invest-applet/invest/help.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/invest-applet/invest/help.py b/invest-applet/invest/help.py new file mode 100644 index 00000000..7dfaabf0 --- /dev/null +++ b/invest-applet/invest/help.py @@ -0,0 +1,8 @@ +# -*- coding: utf-8 -*- +import gtk, gtk.gdk + +def show_help(): + gtk.show_uri(None, "ghelp:invest-applet", gtk.gdk.CURRENT_TIME) + +def show_help_section(id): + gtk.show_uri(None, "ghelp:invest-applet?%s" % id, gtk.gdk.CURRENT_TIME) |