Changeset 26034 in vbox
- Timestamp:
- Jan 25, 2010 8:31:39 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 13 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/version.h
r24842 r26034 73 73 #define VBOX_VENDOR "Sun Microsystems, Inc." 74 74 75 /** Product name */ 76 #define VBOX_PRODUCT "Sun VirtualBox" 77 75 78 /** @name Prefined strings for Windows resource files 76 79 * -
trunk/src/VBox/Frontends/VBoxFB/VBoxFB.cpp
r21771 r26034 66 66 67 67 printf("VirtualBox DirectFB GUI built %s %s\n" 68 "(C) 2004-20 09 Sun Microsystems, Inc.\n"68 "(C) 2004-2010 " VBOX_VENDOR "\n" 69 69 "(C) 2004-2005 secunet Security Networks AG\n", __DATE__, __TIME__); 70 70 -
trunk/src/VBox/Frontends/VBoxHeadless/VBoxHeadless.cpp
r25901 r26034 623 623 624 624 LogFlow (("VBoxHeadless STARTED.\n")); 625 RTPrintf ("VirtualBox Headless Interface %s\n" 626 "(C) 2008-2009 Sun Microsystems, Inc.\n" 627 "All rights reserved.\n\n", 628 VBOX_VERSION_STRING); 625 RTPrintf (VBOX_PRODUCT " Headless Interface " VBOX_VERSION_STRING "\n" 626 "(C) 2008-2010 " VBOX_VENDOR "\n" 627 "All rights reserved.\n\n"); 629 628 630 629 Bstr id; -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageHelp.cpp
r25819 r26034 41 41 if (!s_fShown) 42 42 { 43 RTPrintf( "VirtualBoxCommand Line Management Interface Version "43 RTPrintf(VBOX_PRODUCT" Command Line Management Interface Version " 44 44 VBOX_VERSION_STRING "\n" 45 "(C) 2005-20 09 Sun Microsystems, Inc.\n"45 "(C) 2005-2010 " VBOX_VENDOR "\n" 46 46 "All rights reserved.\n" 47 47 "\n"); -
trunk/src/VBox/Frontends/VBoxSDL/VBoxSDL.cpp
r25901 r26034 979 979 980 980 LogFlow(("SDL GUI started\n")); 981 RTPrintf( "Sun VirtualBoxSDL GUI version %s\n"982 "(C) 2005-20 09 Sun Microsystems, Inc.\n"981 RTPrintf(VBOX_PRODUCT " SDL GUI version %s\n" 982 "(C) 2005-2010 " VBOX_VENDOR "\n" 983 983 "All rights reserved.\n\n", 984 984 VBOX_VERSION_STRING); … … 4276 4276 4277 4277 4278 strcpy(szTitle, "Sun VirtualBox- ");4278 strcpy(szTitle, VBOX_PRODUCT " - "); 4279 4279 4280 4280 Bstr name; … … 4408 4408 setUITitle(szTitle); 4409 4409 #else 4410 SDL_WM_SetCaption(szTitle, "Sun VirtualBox");4410 SDL_WM_SetCaption(szTitle, VBOX_PRODUCT); 4411 4411 #endif 4412 4412 } -
trunk/src/VBox/Frontends/VirtualBox/src/VBoxAboutDlg.cpp
r25526 r26034 75 75 #if VBOX_OSE 76 76 mAboutText = aboutText + " " + versionText.arg (mVersion) + "\n" + 77 QString ("%1 2004-20 09 Sun Microsystems, Inc.").arg (QChar (0xa9));77 QString ("%1 2004-2010 " VBOX_VENDOR).arg (QChar (0xa9)); 78 78 #else /* VBOX_OSE */ 79 79 mAboutText = aboutText + "\n" + -
trunk/src/VBox/Frontends/VirtualBox/src/globals/VBoxGlobal.cpp
r25589 r26034 23 23 #include "VBoxGlobal.h" 24 24 #include <VBox/VBoxHDD.h> 25 #include <VBox/version.h> 25 26 26 27 #include "VBoxDefs.h" … … 2660 2661 QString VBoxGlobal::languageTranslators() const 2661 2662 { 2662 return qApp->translate ("@@@", "Sun Microsystems, Inc.",2663 return qApp->translate ("@@@", VBOX_VENDOR, 2663 2664 "Comma-separated list of translators"); 2664 2665 } -
trunk/src/VBox/Frontends/VirtualBox/src/main.cpp
r25526 r26034 62 62 #include <iprt/stream.h> 63 63 #include <VBox/err.h> 64 #include <VBox/version.h> 64 65 #endif /* !VBOX_WITH_PRECOMPILED_HEADERS */ 65 66 … … 258 259 #endif 259 260 260 RTPrintf( "Sun VirtualBoxGraphical User Interface %s\n"261 "(C) 2005-20 09 Sun Microsystems, Inc.\n"261 RTPrintf(VBOX_PRODUCT " Graphical User Interface %s\n" 262 "(C) 2005-2010 " VBOX_VENDOR "\n" 262 263 "All rights reserved.\n" 263 264 "\n" -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/VBoxGLSettingsLanguage.cpp
r25177 r26034 33 33 #include <iprt/param.h> 34 34 #include <iprt/path.h> 35 #include <VBox/version.h> 35 36 36 37 extern const char *gVBoxLangSubDir; … … 70 71 71 72 QString translatorsName = tratra (aTranslator, 72 "@@@", "Sun Microsystems, Inc.", "Comma-separated list of translators");73 "@@@", VBOX_VENDOR, "Comma-separated list of translators"); 73 74 74 75 QString itemName = nativeLanguage; -
trunk/src/VBox/Main/generic/OpenGLTestApp.cpp
r25458 r26034 5 5 6 6 /* 7 * Copyright (C) 2009 Sun Microsystems, Inc.7 * Copyright (C) 2009-2010 Sun Microsystems, Inc. 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 286 286 #endif 287 287 case 'h': 288 RTPrintf( "VirtualBoxHelper for testing 2D/3D OpenGL capabilities %u.%u.%u\n"289 "(C) 2009 Sun Microsystems, Inc.\n"288 RTPrintf(VBOX_PRODUCT " Helper for testing 2D/3D OpenGL capabilities %u.%u.%u\n" 289 "(C) 2009-2010 " VBOX_VENDOR "\n" 290 290 "All rights reserved.\n" 291 291 "\n" -
trunk/src/VBox/Main/webservice/vboxweb.cpp
r25345 r26034 6 6 * server, to which clients can connect. 7 7 * 8 * Copyright (C) 2006-20 09Sun Microsystems, Inc.8 * Copyright (C) 2006-2010 Sun Microsystems, Inc. 9 9 * 10 10 * This file is part of VirtualBox Open Source Edition (OSE), as … … 265 265 RTR3Init(); 266 266 267 RTStrmPrintf(g_pStdErr, "Sun VirtualBox Webservice Version %s\n"268 "(C) 2005-20 09 Sun Microsystems, Inc.\n"269 "All rights reserved.\n" , VBOX_VERSION_STRING);267 RTStrmPrintf(g_pStdErr, VBOX_PRODUCT " Webservice Version " VBOX_VERSION_STRING "\n" 268 "(C) 2005-2010 " VBOX_VENDOR "\n" 269 "All rights reserved.\n"); 270 270 271 271 int c; -
trunk/src/VBox/Main/xpcom/server.cpp
r25860 r26034 1018 1018 1019 1019 iSize = RTStrPrintf(szBuf, sizeof(szBuf), 1020 "Sun VirtualBoxXPCOM Server Version "1020 VBOX_PRODUCT" XPCOM Server Version " 1021 1021 VBOX_VERSION_STRING); 1022 1022 for (int i = iSize; i > 0; i--) 1023 1023 putchar('*'); 1024 1024 RTPrintf("\n%s\n", szBuf); 1025 RTPrintf("(C) 2008-20 09 Sun Microsystems, Inc.\n"1025 RTPrintf("(C) 2008-2010 " VBOX_VENDOR "\n" 1026 1026 "All rights reserved.\n"); 1027 1027 #ifdef DEBUG -
trunk/src/VBox/RDP/client/rdesktop.c
r16631 r26034 39 39 #include <errno.h> 40 40 #include "rdesktop.h" 41 42 #ifdef VBOX 43 # include <VBox/version.h> 44 #endif 41 45 42 46 #ifdef HAVE_LOCALE_H … … 147 151 fprintf(stderr, "rdesktop: A Remote Desktop Protocol client.\n"); 148 152 fprintf(stderr, "Version " VERSION ". Copyright (C) 1999-2008 Matthew Chapman.\n"); 149 fprintf(stderr, "Modified for VirtualBox by Sun Microsystems, Inc.\n");153 fprintf(stderr, "Modified for VirtualBox by " VBOX_VENDOR "\n"); 150 154 fprintf(stderr, "See http://www.rdesktop.org/ for more information.\n\n"); 151 155
Note:
See TracChangeset
for help on using the changeset viewer.