summaryrefslogtreecommitdiff
path: root/virtManager/systray.py
diff options
context:
space:
mode:
authorCole Robinson <crobinso@redhat.com>2014-01-28 18:04:46 -0500
committerCole Robinson <crobinso@redhat.com>2014-01-29 09:22:28 -0500
commitc5581c01d23f2cb2aca4a1861378dac9d580e53c (patch)
tree1ba0a3bc8d1285eba6793639d5fb2118f7e0faef /virtManager/systray.py
parent00d5312bd67cadc0c5d38098d43794a8b05e8167 (diff)
downloadvirt-manager-c5581c01d23f2cb2aca4a1861378dac9d580e53c.tar.gz
Move sharedui.py to vmmenu.py
Since that's all it contains now
Diffstat (limited to 'virtManager/systray.py')
-rw-r--r--virtManager/systray.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/virtManager/systray.py b/virtManager/systray.py
index 724ec77a..787a31f6 100644
--- a/virtManager/systray.py
+++ b/virtManager/systray.py
@@ -25,7 +25,7 @@ from gi.repository import GObject
from gi.repository import Gtk
# pylint: enable=E0611
-from virtManager import sharedui
+from virtManager import vmmenu
from virtManager.baseclass import vmmGObject
from virtManager.error import vmmErrorDialog
@@ -303,7 +303,7 @@ class vmmSystray(vmmGObject):
# Build VM list entry
menu_item = build_image_menu_item(vm.get_name())
vm_mappings[uuid] = menu_item
- vm_action_menu = sharedui.VMActionMenu(self, lambda: vm)
+ vm_action_menu = vmmenu.VMActionMenu(self, lambda: vm)
menu_item.set_submenu(vm_action_menu)
self.vm_action_dict[uuid] = vm_action_menu