Changeset 13641 in vbox
- Timestamp:
- Oct 29, 2008 8:18:28 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 38572
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox4/src/VBoxMediaComboBox.cpp
r13580 r13641 26 26 #include <QDir> 27 27 #include <QAbstractItemView> 28 #include <QUuid> 28 29 29 30 VBoxMediaComboBox::VBoxMediaComboBox (QWidget *aParent) … … 102 103 QUuid VBoxMediaComboBox::id (int aIndex /*= -1*/) const 103 104 { 105 QUuid uuidNull; /* gcc-3.3 hack */ 104 106 AssertReturn (aIndex == -1 || 105 107 (aIndex >= 0 && aIndex < mMedia.size()), 106 QUuid());108 uuidNull); 107 109 108 110 return mMedia [aIndex == -1 ? currentIndex() : aIndex].id;
Note:
See TracChangeset
for help on using the changeset viewer.