Changeset 64540 in vbox
- Timestamp:
- Nov 3, 2016 4:50:37 PM (8 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/extensions
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/extensions/QIComboBox.cpp
r64538 r64540 168 168 } 169 169 170 QAbstractItemView *QIComboBox::view() const 171 { 172 /* Redirect to combo-box: */ 173 AssertPtrReturn(m_pComboBox, 0); 174 return m_pComboBox->view(); 175 } 176 170 177 QSize QIComboBox::iconSize() const 171 178 { -
trunk/src/VBox/Frontends/VirtualBox/src/extensions/QIComboBox.h
r64538 r64540 67 67 /** Returns the embedded line-editor reference. */ 68 68 QLineEdit *lineEdit() const; 69 /** Returns the embedded list-view reference. */ 70 QAbstractItemView *view() const; 69 71 70 72 /** Returns the size of the icons shown in the combo-box. */ -
trunk/src/VBox/Frontends/VirtualBox/src/extensions/QITreeView.h
r64488 r64540 99 99 public: 100 100 101 /** Constructs t able-view passing @a pParent to the base-class. */101 /** Constructs tree-view passing @a pParent to the base-class. */ 102 102 QITreeView(QWidget *pParent = 0); 103 103
Note:
See TracChangeset
for help on using the changeset viewer.