Changeset 43536 in vbox
- Timestamp:
- Oct 4, 2012 11:53:42 AM (12 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/selector/graphics/chooser
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/selector/graphics/chooser/UIGChooser.cpp
r43514 r43536 62 62 UIVMItem* UIGChooser::currentItem() const 63 63 { 64 return m_pChooserModel->current Item();64 return m_pChooserModel->currentMachineItem(); 65 65 } 66 66 67 67 QList<UIVMItem*> UIGChooser::currentItems() const 68 68 { 69 return m_pChooserModel->current Items();69 return m_pChooserModel->currentMachineItems(); 70 70 } 71 71 -
trunk/src/VBox/Frontends/VirtualBox/src/selector/graphics/chooser/UIGChooserModel.cpp
r43528 r43536 186 186 } 187 187 188 UIVMItem* UIGChooserModel::current Item() const188 UIVMItem* UIGChooserModel::currentMachineItem() const 189 189 { 190 190 /* Search for the first selected machine: */ … … 217 217 } 218 218 219 QList<UIVMItem*> UIGChooserModel::current Items() const219 QList<UIVMItem*> UIGChooserModel::currentMachineItems() const 220 220 { 221 221 /* Populate list of selected machines: */ -
trunk/src/VBox/Frontends/VirtualBox/src/selector/graphics/chooser/UIGChooserModel.h
r43528 r43536 110 110 111 111 /* API: Current-item stuff: */ 112 UIVMItem* current Item() const;112 UIVMItem* currentMachineItem() const; 113 113 QString currentItemDefinition() const; 114 QList<UIVMItem*> current Items() const;114 QList<UIVMItem*> currentMachineItems() const; 115 115 const QList<UIGChooserItem*>& selectionList() const; 116 116 void setCurrentItem(int iItemIndex);
Note:
See TracChangeset
for help on using the changeset viewer.