summaryrefslogtreecommitdiff
path: root/virtManager/createpool.py
diff options
context:
space:
mode:
authorCole Robinson <crobinso@redhat.com>2014-01-26 18:15:50 -0500
committerCole Robinson <crobinso@redhat.com>2014-01-26 18:15:50 -0500
commit708a2737cfd34f32c912ca3aaf2a29283e3a05c3 (patch)
tree38ec9321be6227fb2aea90486907449cf4079916 /virtManager/createpool.py
parent2a34b353da1fd9750718605c240b6f3fbd74b0f0 (diff)
downloadvirt-manager-708a2737cfd34f32c912ca3aaf2a29283e3a05c3.tar.gz
Split uihelpers into sharedui and uiutil
Reserve uiutil for the little gtk helper functions, rest goes into shared UI (which all should probably be factored into their own files but thats a task for another day)
Diffstat (limited to 'virtManager/createpool.py')
-rw-r--r--virtManager/createpool.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/virtManager/createpool.py b/virtManager/createpool.py
index 67f50176..f4c7ed7c 100644
--- a/virtManager/createpool.py
+++ b/virtManager/createpool.py
@@ -27,7 +27,7 @@ import logging
from virtManager.baseclass import vmmGObjectUI
from virtManager.asyncjob import vmmAsyncJob
-from virtManager import uihelpers
+from virtManager import uiutil
from virtinst import StoragePool
@@ -255,7 +255,7 @@ class vmmCreatePool(vmmGObjectUI):
def show_options_by_pool(self):
def show_row(base, do_show):
widget = self.widget(base + "-label")
- uihelpers.set_grid_row_visible(widget, do_show)
+ uiutil.set_grid_row_visible(widget, do_show)
src = self._pool.supports_property("source_path")
src_b = src and not self.conn.is_remote()