- Timestamp:
- Jan 12, 2022 9:29:42 AM (3 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox
- Files:
-
- 5 edited
- 16 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/VirtualBox2.qrc
r91544 r93196 63 63 <file alias="name_16px.png">images/name_16px.png</file> 64 64 <file alias="next_16px.png">images/next_16px.png</file> 65 <file alias="notification_center_16px.png">images/notification_center_16px.png</file> 66 <file alias="notification_center_delete_progress_16px.png">images/notification_center_delete_progress_16px.png</file> 67 <file alias="notification_center_hold_progress_16px.png">images/notification_center_hold_progress_16px.png</file> 68 <file alias="notification_center_sort_16px.png">images/notification_center_sort_16px.png</file> 65 69 <file alias="nw_16px.png">images/nw_16px.png</file> 66 70 <file alias="nw_24px.png">images/nw_24px.png</file> -
trunk/src/VBox/Frontends/VirtualBox/VirtualBox2_x2.qrc
r91544 r93196 66 66 <file alias="name_16px_x2.png">images/x2/name_16px_x2.png</file> 67 67 <file alias="next_16px_x2.png">images/x2/next_16px_x2.png</file> 68 <file alias="notification_center_16px_x2.png">images/x2/notification_center_16px_x2.png</file> 69 <file alias="notification_center_delete_progress_16px_x2.png">images/x2/notification_center_delete_progress_16px_x2.png</file> 70 <file alias="notification_center_hold_progress_16px_x2.png">images/x2/notification_center_hold_progress_16px_x2.png</file> 71 <file alias="notification_center_sort_16px_x2.png">images/x2/notification_center_sort_16px_x2.png</file> 68 72 <file alias="nw_16px_x2.png">images/x2/nw_16px_x2.png</file> 69 73 <file alias="nw_24px_x2.png">images/x2/nw_24px_x2.png</file> -
trunk/src/VBox/Frontends/VirtualBox/VirtualBox2_x3.qrc
r91544 r93196 66 66 <file alias="name_16px_x3.png">images/x3/name_16px_x3.png</file> 67 67 <file alias="next_16px_x3.png">images/x3/next_16px_x3.png</file> 68 <file alias="notification_center_16px_x3.png">images/x3/notification_center_16px_x3.png</file> 69 <file alias="notification_center_delete_progress_16px_x3.png">images/x3/notification_center_delete_progress_16px_x3.png</file> 70 <file alias="notification_center_hold_progress_16px_x3.png">images/x3/notification_center_hold_progress_16px_x3.png</file> 71 <file alias="notification_center_sort_16px_x3.png">images/x3/notification_center_sort_16px_x3.png</file> 68 72 <file alias="nw_16px_x3.png">images/x3/nw_16px_x3.png</file> 69 73 <file alias="nw_24px_x3.png">images/x3/nw_24px_x3.png</file> -
trunk/src/VBox/Frontends/VirtualBox/VirtualBox2_x4.qrc
r91544 r93196 66 66 <file alias="name_16px_x4.png">images/x4/name_16px_x4.png</file> 67 67 <file alias="next_16px_x4.png">images/x4/next_16px_x4.png</file> 68 <file alias="notification_center_16px_x4.png">images/x4/notification_center_16px_x4.png</file> 69 <file alias="notification_center_delete_progress_16px_x4.png">images/x4/notification_center_delete_progress_16px_x4.png</file> 70 <file alias="notification_center_hold_progress_16px_x4.png">images/x4/notification_center_hold_progress_16px_x4.png</file> 71 <file alias="notification_center_sort_16px_x4.png">images/x4/notification_center_sort_16px_x4.png</file> 68 72 <file alias="nw_16px_x4.png">images/x4/nw_16px_x4.png</file> 69 73 <file alias="nw_24px_x4.png">images/x4/nw_24px_x4.png</file> -
trunk/src/VBox/Frontends/VirtualBox/src/notificationcenter/UINotificationCenter.cpp
r93115 r93196 518 518 if (m_pButtonOpen) 519 519 { 520 m_pButtonOpen->setIcon(UIIconPool::iconSet(":/ reset_warnings_16px.png"));520 m_pButtonOpen->setIcon(UIIconPool::iconSet(":/notification_center_16px.png")); 521 521 m_pButtonOpen->setCheckable(true); 522 522 connect(m_pButtonOpen, &QIToolButton::toggled, this, &UINotificationCenter::sltHandleOpenButtonToggled); … … 531 531 if (m_pButtonToggleSorting) 532 532 { 533 m_pButtonToggleSorting->setIcon(UIIconPool::iconSet(":/ sort_16px.png"));533 m_pButtonToggleSorting->setIcon(UIIconPool::iconSet(":/notification_center_sort_16px.png")); 534 534 m_pButtonToggleSorting->setCheckable(true); 535 535 m_pButtonToggleSorting->setChecked(gEDataManager->notificationCenterOrder() == Qt::AscendingOrder); … … 542 542 if (m_pButtonKeepFinished) 543 543 { 544 m_pButtonKeepFinished->setIcon(UIIconPool::iconSet(":/ pin_16px.png"));544 m_pButtonKeepFinished->setIcon(UIIconPool::iconSet(":/notification_center_hold_progress_16px.png")); 545 545 m_pButtonKeepFinished->setCheckable(true); 546 546 m_pButtonKeepFinished->setChecked(gEDataManager->keepSuccessfullNotificationProgresses()); … … 553 553 if (m_pButtonRemoveFinished) 554 554 { 555 m_pButtonRemoveFinished->setIcon(UIIconPool::iconSet(":/ edata_remove_16px_x3.png"));555 m_pButtonRemoveFinished->setIcon(UIIconPool::iconSet(":/notification_center_delete_progress_16px.png")); 556 556 connect(m_pButtonRemoveFinished, &QIToolButton::clicked, this, &UINotificationCenter::sltHandleRemoveFinishedButtonClicked); 557 557 m_pLayoutButtons->addWidget(m_pButtonRemoveFinished);
Note:
See TracChangeset
for help on using the changeset viewer.