Changeset 67837 in vbox
- Timestamp:
- Jul 6, 2017 4:07:35 PM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 116773
- Location:
- trunk/src/VBox/Frontends/VirtualBox
- Files:
-
- 6 edited
- 8 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/VirtualBox1.qrc
r67815 r67837 68 68 <file alias="display_hardware_write_16px.png">images/display_hardware_write_16px.png</file> 69 69 <file alias="display_software_16px.png">images/display_software_16px.png</file> 70 <file alias="download_manager_16px.png">images/download_manager_16px.png</file> 71 <file alias="download_manager_32px.png">images/download_manager_32px.png</file> 72 <file alias="download_manager_error_16px.png">images/download_manager_error_16px.png</file> 73 <file alias="download_manager_loading_16px.png">images/download_manager_loading_16px.png</file> 70 74 <file alias="drag_drop_16px.png">images/drag_drop_16px.png</file> 71 75 <file alias="drag_drop_disabled_16px.png">images/drag_drop_disabled_16px.png</file> -
trunk/src/VBox/Frontends/VirtualBox/VirtualBox1_hidpi.qrc
r67815 r67837 68 68 <file alias="display_hardware_write_16px_hidpi.png">images/hidpi/display_hardware_write_16px_hidpi.png</file> 69 69 <file alias="display_software_16px_hidpi.png">images/hidpi/display_software_16px_hidpi.png</file> 70 <file alias="download_manager_16px_hidpi.png">images/hidpi/download_manager_16px_hidpi.png</file> 71 <file alias="download_manager_32px_hidpi.png">images/hidpi/download_manager_32px_hidpi.png</file> 72 <file alias="download_manager_error_16px_hidpi.png">images/hidpi/download_manager_error_16px_hidpi.png</file> 73 <file alias="download_manager_loading_16px_hidpi.png">images/hidpi/download_manager_loading_16px_hidpi.png</file> 70 74 <file alias="drag_drop_16px_hidpi.png">images/hidpi/drag_drop_16px_hidpi.png</file> 71 75 <file alias="drag_drop_disabled_16px_hidpi.png">images/hidpi/drag_drop_disabled_16px_hidpi.png</file> -
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIActionPool.cpp
r63317 r67837 785 785 786 786 UIActionSimpleNetworkAccessManager(UIActionPool *pParent) 787 : UIActionSimple(pParent, ":/ nw_16px.png", ":/nw_disabled_16px.png")787 : UIActionSimple(pParent, ":/download_manager_16px.png") 788 788 { 789 789 setMenuRole(QAction::ApplicationSpecificRole); -
trunk/src/VBox/Frontends/VirtualBox/src/net/UINetworkManagerDialog.cpp
r62493 r67837 57 57 { 58 58 /* Apply window icons: */ 59 setWindowIcon(UIIconPool::iconSetFull(":/ nw_32px.png", ":/nw_16px.png"));59 setWindowIcon(UIIconPool::iconSetFull(":/download_manager_32px.png", ":/download_manager_16px.png")); 60 60 61 61 /* Do not count that window as important for application, -
trunk/src/VBox/Frontends/VirtualBox/src/net/UINetworkManagerIndicator.cpp
r62493 r67837 32 32 { 33 33 /* Assign state icons: */ 34 setStateIcon(UINetworkManagerIndicatorState_Idle, UIIconPool::iconSet(":/ nw_16px.png"));35 setStateIcon(UINetworkManagerIndicatorState_Loading, UIIconPool::iconSet(":/ nw_loading_16px.png"));36 setStateIcon(UINetworkManagerIndicatorState_Error, UIIconPool::iconSet(":/ nw_error_16px.png"));34 setStateIcon(UINetworkManagerIndicatorState_Idle, UIIconPool::iconSet(":/download_manager_16px.png")); 35 setStateIcon(UINetworkManagerIndicatorState_Loading, UIIconPool::iconSet(":/download_manager_loading_16px.png")); 36 setStateIcon(UINetworkManagerIndicatorState_Error, UIIconPool::iconSet(":/download_manager_error_16px.png")); 37 37 38 38 /* Translate content: */ -
trunk/src/VBox/Frontends/VirtualBox/src/net/UINetworkRequestWidget.cpp
r63567 r67837 49 49 { 50 50 /* Setup self: */ 51 setTitleIcon(UIIconPool::iconSet(":/ nw_16px.png"));51 setTitleIcon(UIIconPool::iconSet(":/download_manager_16px.png")); 52 52 setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Fixed); 53 53 setContentWidget(m_pContentWidget);
Note:
See TracChangeset
for help on using the changeset viewer.