Changeset 50879 in vbox
- Timestamp:
- Mar 26, 2014 9:18:57 AM (11 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox
- Files:
-
- 2 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/VirtualBox2.qrc
r50309 r50879 164 164 <file alias="progress_media_create_90px.png">images/progress_media_create_90px.png</file> 165 165 <file alias="progress_media_delete_90px.png">images/progress_media_delete_90px.png</file> 166 <file alias="progress_network_interface_90px.png">images/progress_network_interface_90px.png</file> 166 167 <file alias="progress_snapshot_create_90px.png">images/progress_snapshot_create_90px.png</file> 167 168 <file alias="progress_snapshot_restore_90px.png">images/progress_snapshot_restore_90px.png</file> -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsNetwork.cpp
r48579 r50879 776 776 if (!host.isOk()) 777 777 return msgCenter().cannotCreateHostInterface(host, this); 778 msgCenter().showModalProgressDialog(progress, tr("Networking"), ":/ nw_32px.png", this, 0); // TODO: Change icon!778 msgCenter().showModalProgressDialog(progress, tr("Networking"), ":/progress_network_interface_90px.png", this, 0); 779 779 if (!progress.isOk() || progress.GetResultCode() != 0) 780 780 return msgCenter().cannotCreateHostInterface(progress, this); … … 828 828 if (!host.isOk()) 829 829 return msgCenter().cannotRemoveHostInterface(host, strInterfaceName, this); 830 msgCenter().showModalProgressDialog(progress, tr("Networking"), ":/ nw_32px.png", this, 0); // TODO: Change icon!830 msgCenter().showModalProgressDialog(progress, tr("Networking"), ":/progress_network_interface_90px.png", this, 0); 831 831 if (!progress.isOk() || progress.GetResultCode() != 0) 832 832 return msgCenter().cannotRemoveHostInterface(progress, strInterfaceName, this);
Note:
See TracChangeset
for help on using the changeset viewer.