Changeset 8132 in vbox
- Timestamp:
- Apr 18, 2008 9:40:07 AM (16 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 10 edited
-
Devices/Audio/audio.c (modified) (1 diff)
-
Devices/Graphics/BIOS/vbe.c (modified) (4 diffs)
-
Devices/Graphics/BIOS/vgabios.c (modified) (1 diff)
-
Devices/PC/BIOS/rombios.c (modified) (1 diff)
-
Devices/Storage/testcase/vditool.cpp (modified) (1 diff)
-
Frontends/VBoxFB/VBoxFB.cpp (modified) (1 diff)
-
Frontends/VBoxHeadless/VBoxHeadless.cpp (modified) (1 diff)
-
Frontends/VirtualBox/ui/VBoxAboutDlg.ui.h (modified) (1 diff)
-
Main/linux/server.cpp (modified) (1 diff)
-
RDP/client/rdesktop.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/audio.c
r7561 r8132 226 226 shown = 1; 227 227 AUD_log (NULL, "Save all your work and restart without audio\n"); 228 AUD_log (NULL, "Please send a bug report to innotek\n");228 AUD_log (NULL, "Please send a bug, see www.virtualbox.org\n"); 229 229 AUD_log (NULL, "I am sorry\n"); 230 230 } -
trunk/src/VBox/Devices/Graphics/BIOS/vbe.c
r5450 r8132 62 62 63 63 _vbebios_vendor_name: 64 .ascii " innotek GmbH"64 .ascii "Sun Microsystems, Inc." 65 65 .byte 0x00 66 66 … … 70 70 71 71 _vbebios_product_revision: 72 .ascii " innotekVirtualBox Version "72 .ascii "Sun xVM VirtualBox Version " 73 73 .ascii VBOX_VERSION_STRING 74 74 .byte 0x00 … … 76 76 _vbebios_info_string: 77 77 //.ascii "Bochs VBE Display Adapter enabled" 78 .ascii " innotekVirtualBox VBE Display Adapter enabled"78 .ascii "VirtualBox VBE Display Adapter enabled" 79 79 .byte 0x0a,0x0d 80 80 .byte 0x0a,0x0d … … 88 88 89 89 msg_vbe_init: 90 .ascii " innotekVirtualBox Version "90 .ascii "VirtualBox Version " 91 91 .ascii VBOX_VERSION_STRING 92 92 .ascii " VBE Display Adapter" -
trunk/src/VBox/Devices/Graphics/BIOS/vgabios.c
r5454 r8132 430 430 431 431 msg_vga_init: 432 .ascii " innotekVirtualBox Version "432 .ascii "Sun xVM VirtualBox Version " 433 433 .ascii VBOX_VERSION_STRING 434 434 .ascii " VGA BIOS" -
trunk/src/VBox/Devices/PC/BIOS/rombios.c
r8046 r8132 970 970 * very same code will lead to compare errors when restoring saved state. */ 971 971 static char bios_cvs_version_string[] = "VirtualBox " VBOX_VERSION_STRING; 972 #define BIOS_COPYRIGHT_STRING " innotekVirtualBox BIOS"972 #define BIOS_COPYRIGHT_STRING "Sun xVM VirtualBox BIOS" 973 973 #else /* !VBOX */ 974 974 static char bios_cvs_version_string[] = "$Revision: 1.176 $ $Date: 2006/12/30 17:13:17 $"; -
trunk/src/VBox/Devices/Storage/testcase/vditool.cpp
r6291 r8132 352 352 353 353 RTR3Init(); 354 RTPrintf("vditool Copyright (c) 200 4-2008 innotek GmbH.\n\n");354 RTPrintf("vditool Copyright (c) 2008 Sun Microsystems, Inc.\n\n"); 355 355 356 356 /* -
trunk/src/VBox/Frontends/VBoxFB/VBoxFB.cpp
r6285 r8132 59 59 60 60 printf("VirtualBox DirectFB GUI built %s %s\n" 61 "(C) 2004-2008 innotek GmbH\n" 61 "(C) 2008 Sun Microsystems, Inc.\n" 62 "(C) 2004-2007 innotek GmbH\n" 62 63 "(C) 2004-2005 secunet Security Networks AG\n", __DATE__, __TIME__); 63 64 -
trunk/src/VBox/Frontends/VBoxHeadless/VBoxHeadless.cpp
r7305 r8132 423 423 LogFlow (("VBoxHeadless STARTED.\n")); 424 424 RTPrintf ("VirtualBox Headless Interface %s\n" 425 "(C) 200 5-2008 innotek GmbH\n"425 "(C) 2008 Sun Microsystems, Inc.\n" 426 426 "All rights reserved\n\n", 427 427 VBOX_VERSION_STRING); -
trunk/src/VBox/Frontends/VirtualBox/ui/VBoxAboutDlg.ui.h
r6285 r8132 32 32 { 33 33 /* This is intentionally untranslatable (oly Latin-1 here!) */ 34 const char *Copyright = "© 2004—2008 innotek GmbH";34 const char *Copyright = "© 2004—2008 Sun Microsystems, Inc."; 35 35 36 36 QString tpl = mAboutLabel->text(); -
trunk/src/VBox/Main/linux/server.cpp
r8012 r8132 1058 1058 1059 1059 iSize = snprintf (szBuf, sizeof(szBuf), 1060 " innotekVirtualBox XPCOM Server Version "1060 "Sun xVM VirtualBox XPCOM Server Version " 1061 1061 VBOX_VERSION_STRING); 1062 1062 for (int i=iSize; i>0; i--) 1063 1063 putchar('*'); 1064 1064 printf ("\n%s\n", szBuf); 1065 printf ("(C) 200 4-2008 innotek GmbH\n"1065 printf ("(C) 2008 Sun Microsystems, Inc.\n" 1066 1066 "All rights reserved.\n"); 1067 1067 #ifdef DEBUG -
trunk/src/VBox/RDP/client/rdesktop.c
r7826 r8132 133 133 fprintf(stderr, "rdesktop: A Remote Desktop Protocol client.\n"); 134 134 fprintf(stderr, "Version " VERSION ". Copyright (C) 1999-2005 Matt Chapman.\n"); 135 fprintf(stderr, "Modified for VirtualBox by innotek GmbH.\n");135 fprintf(stderr, "Modified for VirtualBox by Sun Microsystems, Inc.\n"); 136 136 fprintf(stderr, "See http://www.rdesktop.org/ for more information.\n\n"); 137 137
Note:
See TracChangeset
for help on using the changeset viewer.

