follow API change: netvm_vm -> netvm

This commit is contained in:
Marek Marczykowski 2012-03-04 22:02:27 +01:00
parent 3ff0cd0b9f
commit 72fea97066
2 changed files with 5 additions and 5 deletions

View File

@ -191,8 +191,8 @@ class VmNetvmItem (QTableWidgetItem):
if vm.is_netvm() and not vm.is_proxyvm():
self.setText("n/a")
elif vm.netvm_vm is not None:
self.setText(vm.netvm_vm.name)
elif vm.netvm is not None:
self.setText(vm.netvm.name)
else:
self.setText("---")

View File

@ -150,7 +150,7 @@ class VMSettingsWindow(Ui_SettingsDialog, QDialog):
def current_tab_changed(self, idx):
if idx == self.tabs_indices["firewall"]:
if self.vm.netvm_vm is not None and not self.vm.netvm_vm.is_proxyvm():
if self.vm.netvm is not None and not self.vm.netvm.is_proxyvm():
QMessageBox.warning (None, "VM configuration problem!", "The '{0}' AppVM is not network connected to a FirewallVM!<p>".format(self.vm.name) +\
"You may edit the '{0}' VM firewall rules, but these will not take any effect until you connect it to a working Firewall VM.".format(self.vm.name))
@ -195,9 +195,9 @@ class VMSettingsWindow(Ui_SettingsDialog, QDialog):
self.netvm_idx = 0
for (i, vm) in enumerate(netvm_list):
text = vm.name
if vm is self.qvm_collection.get_default_netvm_vm():
if vm is self.qvm_collection.get_default_netvm():
text += " (default)"
if vm.qid == self.vm.netvm_vm.qid:
if vm.qid == self.vm.netvm.qid:
self.netvm_idx = i
text += " (current)"
self.netVM.insertItem(i, text)