def on_quit(): from win_tray import sys_tray sys_tray.on_quit()
def on_quit(): global sys_tray if has_desktop: from gtk_tray import sys_tray sys_tray.on_quit()
def on_quit(): if has_desktop: from gtk_tray import sys_tray else: from non_tray import sys_tray sys_tray.on_quit()
def on_quit(): sys_tray.on_quit()
def on_quit(): import mac_tray as sys_tray sys_tray.on_quit()