uiutil: Clarify a few ambiguous function names

This commit is contained in:
Cole Robinson
2015-04-10 15:00:34 -04:00
parent 49e3ea2cdf
commit 6071ab0ea4
16 changed files with 83 additions and 83 deletions
+2 -2
View File
@@ -89,12 +89,12 @@ class vmmCreatePool(vmmGObjectUI):
type_list = self.widget("pool-type")
type_model = Gtk.ListStore(str, str)
type_list.set_model(type_model)
uiutil.set_combo_text_column(type_list, 1)
uiutil.init_combo_text_column(type_list, 1)
format_list = self.widget("pool-format")
format_model = Gtk.ListStore(str, str)
format_list.set_model(format_model)
uiutil.set_combo_text_column(format_list, 1)
uiutil.init_combo_text_column(format_list, 1)
# Target path combo box entry
target_list = self.widget("pool-target-path")