Changeset 34530 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Nov 30, 2010 5:07:32 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 68321
- Location:
- trunk/src/VBox/Frontends/VirtualBox
- Files:
-
- 3 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/VirtualBox2.qrc
r34479 r34530 149 149 <file alias="progress_state_save_90px.png">images/progress_state_save_90px.png</file> 150 150 <file alias="progress_state_restore_90px.png">images/progress_state_restore_90px.png</file> 151 <file alias="progress_import_90px.png">images/progress_import_90px.png</file> 152 <file alias="progress_export_90px.png">images/progress_export_90px.png</file> 153 <file alias="progress_install_guest_additions_90px.png">images/progress_install_guest_additions_90px.png</file> 151 154 </qresource> 152 155 </RCC> -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UISession.cpp
r34479 r34530 376 376 if (fResult) 377 377 { 378 vboxProblem().showModalProgressDialog(progressInstall, tr("Install"), " ",379 mainMachineWindow(), false, 500 /* 500ms delay. */);378 vboxProblem().showModalProgressDialog(progressInstall, tr("Install"), ":/progress_install_guest_additions_90px.png", 379 mainMachineWindow(), true, 500 /* 500ms delay. */); 380 380 if (progressInstall.GetCanceled()) 381 381 return; -
trunk/src/VBox/Frontends/VirtualBox/src/widgets/VBoxImportApplianceWgt.cpp
r34496 r34530 139 139 { 140 140 /* Show some progress, so the user know whats going on */ 141 vboxProblem().showModalProgressDialog (progress, tr ("Importing Appliance ..."), " ", this);141 vboxProblem().showModalProgressDialog (progress, tr ("Importing Appliance ..."), ":/progress_import_90px.png", this, true); 142 142 if (progress.GetCanceled()) 143 143 return false; -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIExportApplianceWzd.cpp
r34520 r34530 654 654 { 655 655 /* Show some progress, so the user know whats going on */ 656 vboxProblem().showModalProgressDialog(progress, tr("Exporting Appliance ..."), " ", this);656 vboxProblem().showModalProgressDialog(progress, tr("Exporting Appliance ..."), ":/progress_export_90px.png", this, true); 657 657 if (progress.GetCanceled()) 658 658 return false;
Note:
See TracChangeset
for help on using the changeset viewer.