Changeset 101669 in vbox
- Timestamp:
- Oct 31, 2023 4:47:47 AM (15 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/notificationcenter/UINotificationObjectItem.cpp
r99946 r101669 104 104 m_pButtonForget->setIconSize(QSize(10, 10)); 105 105 connect(m_pButtonForget, &QIToolButton::clicked, 106 m_pObject, &UINotificationObject::dismiss); 106 m_pObject, &UINotificationObject::dismiss, 107 Qt::QueuedConnection); 107 108 108 109 m_pLayoutUpper->addWidget(m_pButtonForget); … … 116 117 m_pButtonClose->setIconSize(QSize(10, 10)); 117 118 connect(m_pButtonClose, &QIToolButton::clicked, 118 m_pObject, &UINotificationObject::close); 119 m_pObject, &UINotificationObject::close, 120 Qt::QueuedConnection); 119 121 120 122 m_pLayoutUpper->addWidget(m_pButtonClose);
Note:
See TracChangeset
for help on using the changeset viewer.