Changeset 86232 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Sep 23, 2020 12:07:45 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 140501
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/settings/UISettingsSelector.cpp
r83801 r86232 33 33 34 34 35 /** QAccessibleWidget extension used as an accessibility interface for UI ToolBar buttons. */36 class UIAccessibilityInterfaceForUI ToolBarButton : public QAccessibleWidget35 /** QAccessibleWidget extension used as an accessibility interface for UISettingsSelectorToolBar buttons. */ 36 class UIAccessibilityInterfaceForUISettingsSelectorToolBarButton : public QAccessibleWidget 37 37 { 38 38 public: … … 45 45 && strClassname == QLatin1String("QToolButton") 46 46 && pObject->property("Belongs to") == "UISettingsSelectorToolBar") 47 return new UIAccessibilityInterfaceForUI ToolBarButton(qobject_cast<QWidget*>(pObject));47 return new UIAccessibilityInterfaceForUISettingsSelectorToolBarButton(qobject_cast<QWidget*>(pObject)); 48 48 49 49 /* Null by default: */ … … 52 52 53 53 /** Constructs an accessibility interface passing @a pWidget to the base-class. */ 54 UIAccessibilityInterfaceForUI ToolBarButton(QWidget *pWidget)54 UIAccessibilityInterfaceForUISettingsSelectorToolBarButton(QWidget *pWidget) 55 55 : QAccessibleWidget(pWidget, QAccessible::Button) 56 56 {} … … 500 500 { 501 501 /* Install tool-bar button accessibility interface factory: */ 502 QAccessible::installFactory(UIAccessibilityInterfaceForUI ToolBarButton::pFactory);502 QAccessible::installFactory(UIAccessibilityInterfaceForUISettingsSelectorToolBarButton::pFactory); 503 503 504 504 /* Prepare the toolbar: */
Note:
See TracChangeset
for help on using the changeset viewer.