manager: Remove obsolete comment

This commit is contained in:
Cole Robinson 2011-04-15 13:34:13 -04:00
parent 28e2677944
commit 888d7dba0e

View File

@ -430,15 +430,6 @@ class vmmManager(vmmGObjectUI):
vmlist.append_column(diskIOCol)
vmlist.append_column(networkTrafficCol)
# For the columns which follow, we deliberately bind columns
# to fields in the list store & on each update copy the info
# out of the vmmDomain object into the store. Although this
# sounds foolish, empirically this is faster than using the
# set_cell_data_func() callbacks to pull the data out of
# vmmDomain on demand. I suspect this is because the latter
# needs to do many transitions C<->Python for callbacks
# which are relatively slow.
status_icon = gtk.CellRendererPixbuf()
statusCol.pack_start(status_icon, False)
statusCol.add_attribute(status_icon, 'pixbuf', ROW_STATUS_ICON)