diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2008-03-18 19:33:59 +0100 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2008-03-18 19:33:59 +0100 |
commit | 488fe6afce4d0f5322b10ef333fa9e1ae8a286ef (patch) | |
tree | 702edfd86cf9296ee1077705da2deb276a6583c4 /portato/gui/gtk | |
parent | 045852491ba5330d8c4a63b0c6e443d6e073f2be (diff) | |
download | portato-488fe6afce4d0f5322b10ef333fa9e1ae8a286ef.tar.gz portato-488fe6afce4d0f5322b10ef333fa9e1ae8a286ef.tar.bz2 portato-488fe6afce4d0f5322b10ef333fa9e1ae8a286ef.zip |
Split and renamed gui_helper
Diffstat (limited to 'portato/gui/gtk')
-rw-r--r-- | portato/gui/gtk/splash.py | 3 | ||||
-rw-r--r-- | portato/gui/gtk/windows/main.py | 3 |
2 files changed, 3 insertions, 3 deletions
diff --git a/portato/gui/gtk/splash.py b/portato/gui/gtk/splash.py index 0b9a97f..48f8061 100644 --- a/portato/gui/gtk/splash.py +++ b/portato/gui/gtk/splash.py @@ -13,11 +13,10 @@ from __future__ import absolute_import import gtk -import gobject from gettext import lgettext as _ from ...constants import VERSION, APP_ICON -from .basic import Window +from .windows.basic import Window class SplashScreen (Window): diff --git a/portato/gui/gtk/windows/main.py b/portato/gui/gtk/windows/main.py index d468906..0f25572 100644 --- a/portato/gui/gtk/windows/main.py +++ b/portato/gui/gtk/windows/main.py @@ -29,7 +29,8 @@ from ....constants import CONFIG_LOCATION, VERSION, APP_ICON from ....backend.exceptions import PackageNotFoundException, BlockedException # more GUI stuff -from ...gui_helper import Database, Config, EmergeQueue +from ...utils import Database, Config +from ...queue import EmergeQueue from ..session import SESSION_VERSION, SessionException, OldSessionException, NewSessionException from ..wrapper import GtkTree, GtkConsole from ..exception_handling import GtkThread |