Changeset 91192 in vbox
- Timestamp:
- Sep 10, 2021 9:23:29 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/extensions/QIComboBox.cpp
r87898 r91192 47 47 /** Constructs an accessibility interface passing @a pWidget to the base-class. */ 48 48 QIAccessibilityInterfaceForQIComboBox(QWidget *pWidget) 49 : QAccessibleWidget(pWidget, QAccessible:: ToolBar)49 : QAccessibleWidget(pWidget, QAccessible::ComboBox) 50 50 {} 51 51 … … 57 57 virtual int indexOfChild(const QAccessibleInterface *pChild) const /* override */; 58 58 59 /** Returns a text for the passed @a enmTextRole. */60 virtual QString text(QAccessible::Text enmTextRole) const /* override */;61 62 59 private: 63 60 … … 102 99 } 103 100 104 QString QIAccessibilityInterfaceForQIComboBox::text(QAccessible::Text /* enmTextRole */) const105 {106 /* Return empty string: */107 return QString();108 }109 101 110 102
Note:
See TracChangeset
for help on using the changeset viewer.

