Changeset 24590 in vbox
- Timestamp:
- Nov 11, 2009 3:21:59 PM (15 years ago)
- Location:
- trunk/src/VBox/Frontends
- Files:
-
- 2 edited
-
VBoxManage/VBoxManageDisk.cpp (modified) (1 diff)
-
VirtualBox/src/VBoxConsoleWnd.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageDisk.cpp
r24258 r24590 800 800 801 801 default: 802 if (c > 0) 803 { 804 if (RT_C_IS_PRINT(c)) 805 return errorSyntax(USAGE_CONVERTFROMRAW, "Invalid option -%c", c); 806 else 807 return errorSyntax(USAGE_CONVERTFROMRAW, "Invalid option case %i", c); 808 } 809 else if (c == VERR_GETOPT_UNKNOWN_OPTION) 810 return errorSyntax(USAGE_CREATEHD, "unknown option: %s\n", ValueUnion.psz); 811 else if (ValueUnion.pDef) 812 return errorSyntax(USAGE_CONVERTFROMRAW, "%s: %Rrs", ValueUnion.pDef->pszLong, c); 813 else 814 return errorSyntax(USAGE_CONVERTFROMRAW, "error: %Rrs", c); 802 return errorGetOpt(USAGE_CONVERTFROMRAW, c, &ValueUnion); 815 803 } 816 804 } -
trunk/src/VBox/Frontends/VirtualBox/src/VBoxConsoleWnd.cpp
r24564 r24590 348 348 *aSelf = this; 349 349 350 #ifndef DEBUG_bird /* this drives me nuts! */ 350 351 /* Cache IMedium data! */ 351 352 vboxGlobal().startEnumeratingMedia(); 353 #endif 352 354 353 355 #if !(defined (Q_WS_WIN) || defined (Q_WS_MAC))
Note:
See TracChangeset
for help on using the changeset viewer.

