VirtualBox

Changeset 26034 in vbox


Ignore:
Timestamp:
Jan 25, 2010 8:31:39 PM (15 years ago)
Author:
vboxsync
Message:

VBOX_VENDOR, VBOX_PRODUCT

Location:
trunk
Files:
13 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/VBox/version.h

    r24842 r26034  
    7373#define VBOX_VENDOR                     "Sun Microsystems, Inc."
    7474
     75/** Product name */
     76#define VBOX_PRODUCT                    "Sun VirtualBox"
     77
    7578/** @name Prefined strings for Windows resource files
    7679 *
  • trunk/src/VBox/Frontends/VBoxFB/VBoxFB.cpp

    r21771 r26034  
    6666
    6767    printf("VirtualBox DirectFB GUI built %s %s\n"
    68            "(C) 2004-2009 Sun Microsystems, Inc.\n"
     68           "(C) 2004-2010 " VBOX_VENDOR "\n"
    6969           "(C) 2004-2005 secunet Security Networks AG\n", __DATE__, __TIME__);
    7070
  • trunk/src/VBox/Frontends/VBoxHeadless/VBoxHeadless.cpp

    r25901 r26034  
    623623
    624624    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");
    629628
    630629    Bstr id;
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManageHelp.cpp

    r25819 r26034  
    4141    if (!s_fShown)
    4242    {
    43         RTPrintf("VirtualBox Command Line Management Interface Version "
     43        RTPrintf(VBOX_PRODUCT" Command Line Management Interface Version "
    4444                 VBOX_VERSION_STRING  "\n"
    45                  "(C) 2005-2009 Sun Microsystems, Inc.\n"
     45                 "(C) 2005-2010 " VBOX_VENDOR "\n"
    4646                 "All rights reserved.\n"
    4747                 "\n");
  • trunk/src/VBox/Frontends/VBoxSDL/VBoxSDL.cpp

    r25901 r26034  
    979979
    980980    LogFlow(("SDL GUI started\n"));
    981     RTPrintf("Sun VirtualBox SDL GUI version %s\n"
    982              "(C) 2005-2009 Sun Microsystems, Inc.\n"
     981    RTPrintf(VBOX_PRODUCT " SDL GUI version %s\n"
     982             "(C) 2005-2010 " VBOX_VENDOR "\n"
    983983             "All rights reserved.\n\n",
    984984             VBOX_VERSION_STRING);
     
    42764276
    42774277
    4278     strcpy(szTitle, "Sun VirtualBox - ");
     4278    strcpy(szTitle, VBOX_PRODUCT " - ");
    42794279
    42804280    Bstr name;
     
    44084408    setUITitle(szTitle);
    44094409#else
    4410     SDL_WM_SetCaption(szTitle, "Sun VirtualBox");
     4410    SDL_WM_SetCaption(szTitle, VBOX_PRODUCT);
    44114411#endif
    44124412}
  • trunk/src/VBox/Frontends/VirtualBox/src/VBoxAboutDlg.cpp

    r25526 r26034  
    7575#if VBOX_OSE
    7676    mAboutText = aboutText + " " + versionText.arg (mVersion) + "\n" +
    77                  QString ("%1 2004-2009 Sun Microsystems, Inc.").arg (QChar (0xa9));
     77                 QString ("%1 2004-2010 " VBOX_VENDOR).arg (QChar (0xa9));
    7878#else /* VBOX_OSE */
    7979    mAboutText = aboutText + "\n" +
  • trunk/src/VBox/Frontends/VirtualBox/src/globals/VBoxGlobal.cpp

    r25589 r26034  
    2323#include "VBoxGlobal.h"
    2424#include <VBox/VBoxHDD.h>
     25#include <VBox/version.h>
    2526
    2627#include "VBoxDefs.h"
     
    26602661QString VBoxGlobal::languageTranslators() const
    26612662{
    2662     return qApp->translate ("@@@", "Sun Microsystems, Inc.",
     2663    return qApp->translate ("@@@", VBOX_VENDOR,
    26632664                            "Comma-separated list of translators");
    26642665}
  • trunk/src/VBox/Frontends/VirtualBox/src/main.cpp

    r25526 r26034  
    6262#include <iprt/stream.h>
    6363#include <VBox/err.h>
     64#include <VBox/version.h>
    6465#endif /* !VBOX_WITH_PRECOMPILED_HEADERS */
    6566
     
    258259#endif
    259260
    260     RTPrintf("Sun VirtualBox Graphical User Interface %s\n"
    261             "(C) 2005-2009 Sun Microsystems, Inc.\n"
     261    RTPrintf(VBOX_PRODUCT " Graphical User Interface %s\n"
     262            "(C) 2005-2010 " VBOX_VENDOR "\n"
    262263            "All rights reserved.\n"
    263264            "\n"
  • trunk/src/VBox/Frontends/VirtualBox/src/settings/global/VBoxGLSettingsLanguage.cpp

    r25177 r26034  
    3333#include <iprt/param.h>
    3434#include <iprt/path.h>
     35#include <VBox/version.h>
    3536
    3637extern const char *gVBoxLangSubDir;
     
    7071
    7172        QString translatorsName = tratra (aTranslator,
    72             "@@@", "Sun Microsystems, Inc.", "Comma-separated list of translators");
     73            "@@@", VBOX_VENDOR, "Comma-separated list of translators");
    7374
    7475        QString itemName = nativeLanguage;
  • trunk/src/VBox/Main/generic/OpenGLTestApp.cpp

    r25458 r26034  
    55
    66/*
    7  * Copyright (C) 2009 Sun Microsystems, Inc.
     7 * Copyright (C) 2009-2010 Sun Microsystems, Inc.
    88 *
    99 * This file is part of VirtualBox Open Source Edition (OSE), as
     
    286286#endif
    287287                case 'h':
    288                     RTPrintf("VirtualBox Helper 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"
    290290                             "All rights reserved.\n"
    291291                             "\n"
  • trunk/src/VBox/Main/webservice/vboxweb.cpp

    r25345 r26034  
    66 *      server, to which clients can connect.
    77 *
    8  * Copyright (C) 2006-2009 Sun Microsystems, Inc.
     8 * Copyright (C) 2006-2010 Sun Microsystems, Inc.
    99 *
    1010 * This file is part of VirtualBox Open Source Edition (OSE), as
     
    265265    RTR3Init();
    266266
    267     RTStrmPrintf(g_pStdErr, "Sun VirtualBox Webservice Version %s\n"
    268                             "(C) 2005-2009 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");
    270270
    271271    int c;
  • trunk/src/VBox/Main/xpcom/server.cpp

    r25860 r26034  
    10181018
    10191019            iSize = RTStrPrintf(szBuf, sizeof(szBuf),
    1020                                 "Sun VirtualBox XPCOM Server Version "
     1020                                VBOX_PRODUCT" XPCOM Server Version "
    10211021                                VBOX_VERSION_STRING);
    10221022            for (int i = iSize; i > 0; i--)
    10231023                putchar('*');
    10241024            RTPrintf("\n%s\n", szBuf);
    1025             RTPrintf("(C) 2008-2009 Sun Microsystems, Inc.\n"
     1025            RTPrintf("(C) 2008-2010 " VBOX_VENDOR "\n"
    10261026                     "All rights reserved.\n");
    10271027#ifdef DEBUG
  • trunk/src/VBox/RDP/client/rdesktop.c

    r16631 r26034  
    3939#include <errno.h>
    4040#include "rdesktop.h"
     41
     42#ifdef VBOX
     43# include <VBox/version.h>
     44#endif
    4145
    4246#ifdef HAVE_LOCALE_H
     
    147151        fprintf(stderr, "rdesktop: A Remote Desktop Protocol client.\n");
    148152        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");
    150154        fprintf(stderr, "See http://www.rdesktop.org/ for more information.\n\n");
    151155
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette