Changeset 18265 in vbox for trunk/src/VBox/Frontends/VBoxBFE
- Timestamp:
- Mar 25, 2009 5:09:08 PM (16 years ago)
- Location:
- trunk/src/VBox/Frontends/VBoxBFE
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxBFE/SDLConsole.cpp
r14831 r18265 6 6 7 7 /* 8 * Copyright (C) 2006-200 7Sun Microsystems, Inc.8 * Copyright (C) 2006-2009 Sun Microsystems, Inc. 9 9 * 10 10 * This file is part of VirtualBox Open Source Edition (OSE), as … … 1269 1269 1270 1270 RTStrPrintf(pszTitle, sizeof(pszTitle), 1271 "Sun xVMVirtualBox%s%s",1271 "Sun VirtualBox%s%s", 1272 1272 g_uProgressPercent == ~0U && machineState == VMSTATE_SUSPENDED ? " - [Paused]" : "", 1273 1273 mfInputGrab ? " - [Input captured]": ""); … … 1312 1312 char szTitle[256]; 1313 1313 AssertMsg(iPercent >= 0 && iPercent <= 100, ("%d\n", iPercent)); 1314 RTStrPrintf(szTitle, sizeof(szTitle), "Sun xVMVirtualBox - %s %d%%...", pszStr, iPercent);1315 SDL_WM_SetCaption(szTitle, "Sun xVMVirtualBox");1314 RTStrPrintf(szTitle, sizeof(szTitle), "Sun VirtualBox - %s %d%%...", pszStr, iPercent); 1315 SDL_WM_SetCaption(szTitle, "Sun VirtualBox"); 1316 1316 } 1317 1317 -
trunk/src/VBox/Frontends/VBoxBFE/VBoxBFE.cpp
r17743 r18265 11 11 12 12 /* 13 * Copyright (C) 2006-200 7Sun Microsystems, Inc.13 * Copyright (C) 2006-2009 Sun Microsystems, Inc. 14 14 * 15 15 * This file is part of VirtualBox Open Source Edition (OSE), as … … 432 432 int rc = VINF_SUCCESS; 433 433 434 RTPrintf("Sun xVMVirtualBox Simple SDL GUI built %s %s\n", __DATE__, __TIME__);434 RTPrintf("Sun VirtualBox Simple SDL GUI built %s %s\n", __DATE__, __TIME__); 435 435 436 436 // less than one parameter is not possible
Note:
See TracChangeset
for help on using the changeset viewer.