Changeset 2333 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Apr 24, 2007 4:41:01 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 20715
- Location:
- trunk/src/VBox/Frontends
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxBFE/VBoxBFE.cpp
r2271 r2333 169 169 static char *cdromFile = NULL; 170 170 static char *fdaFile = NULL; 171 static c har *pszBootDevice = "IDE";171 static const char *pszBootDevice = "IDE"; 172 172 static uint32_t memorySize = 128; 173 173 static uint32_t vramSize = 4; -
trunk/src/VBox/Frontends/VBoxManage/VBoxManage.cpp
r1916 r2333 1060 1060 vrdpServer->COMGETTER(Port)(&port); 1061 1061 VRDPAuthType_T vrdpAuthType; 1062 c har *strAuthType;1062 const char *strAuthType; 1063 1063 vrdpServer->COMGETTER(AuthType)(&vrdpAuthType); 1064 1064 switch (vrdpAuthType) … … 1664 1664 HardDiskStorageType_T storageType; 1665 1665 hdd->COMGETTER(StorageType)(&storageType); 1666 c har *storageTypeString = "unknown";1666 const char *storageTypeString = "unknown"; 1667 1667 switch (storageType) 1668 1668 { … … 1821 1821 USBDeviceState_T state; 1822 1822 CHECK_ERROR_RET (dev, COMGETTER(State)(&state), 1); 1823 c har *pszState = "?";1823 const char *pszState = "?"; 1824 1824 switch (state) 1825 1825 { … … 1886 1886 USBDeviceFilterAction_T action; 1887 1887 CHECK_ERROR_RET (flt, COMGETTER (Action) (&action), 1); 1888 c har *pszAction = "<invalid>";1888 const char *pszAction = "<invalid>"; 1889 1889 switch (action) 1890 1890 { … … 2022 2022 Bstr comment; 2023 2023 bool fRegister = false; 2024 c har *type = "normal";2024 const char *type = "normal"; 2025 2025 2026 2026 /* let's have a closer look at the arguments */ … … 4754 4754 HardDiskType_T type; 4755 4755 hardDisk->COMGETTER(Type)(&type); 4756 c har *typeStr = "unknown";4756 const char *typeStr = "unknown"; 4757 4757 switch (type) 4758 4758 { … … 4770 4770 4771 4771 HardDiskStorageType_T storageType; 4772 c har *storageTypeStr = "unknown";4772 const char *storageTypeStr = "unknown"; 4773 4773 hardDisk->COMGETTER(StorageType)(&storageType); 4774 4774 switch (storageType) … … 4821 4821 if (strcmp(argv[0], "disk") == 0) 4822 4822 { 4823 c har *type = "normal";4823 const char *type = "normal"; 4824 4824 /* there can be a type parameter */ 4825 4825 if ((argc > 2) && (argc != 4)) … … 6152 6152 struct 6153 6153 { 6154 c har *command;6154 const char *command; 6155 6155 PFNHANDLER handler; 6156 6156 } commandHandlers[] = -
trunk/src/VBox/Frontends/VirtualBox/src/VBoxConsoleWnd.cpp
r2319 r2333 1375 1375 QString info = 1376 1376 tr ("<qt>Indicates the activity of virtual hard disks"); 1377 c har *ctlNames[] = { "IDE0", "IDE1", "Controller%1" };1378 c har *devNames[] = { "Master", "Slave", "Device%1" };1377 const char *ctlNames[] = { "IDE0", "IDE1", "Controller%1" }; 1378 const char *devNames[] = { "Master", "Slave", "Device%1" }; 1379 1379 bool hasDisks = false; 1380 1380 CHardDiskAttachmentEnumerator aen = cmachine.GetHardDiskAttachments().Enumerate();
Note:
See TracChangeset
for help on using the changeset viewer.