VirtualBox

Changeset 12430 in vbox for trunk


Ignore:
Timestamp:
Sep 12, 2008 3:20:01 PM (16 years ago)
Author:
vboxsync
Message:

ConsoleImple2: Hungarian spelling.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/ConsoleImpl2.cpp

    r12428 r12430  
    1717 * Foundation, in version 2 as it comes in the "COPYING" file of the
    1818 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
    19  * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
     19 * hope that it will be useful, but WITHOUT ANY WARRAN  TY of any kind.
    2020 *
    2121 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
     
    135135
    136136#ifdef VBOX_WITH_SMP_GUESTS
    137     /* @todo: r=nike: Testing code, should use actual getter when ready */
    138     uint16_t cNumCpus = 2;
     137    /* @todo nike: Testing code, should use actual getter when ready */
     138    uint16_t cCpus = 2;
    139139#else
    140     uint16_t cNumCpus = 1;
     140    uint16_t cCpus = 1;
    141141#endif
    142142
     
    157157    rc = CFGMR3InsertBytes(pRoot,   "UUID", pUuid, sizeof(*pUuid));                 RC_CHECK();
    158158    rc = CFGMR3InsertInteger(pRoot, "RamSize",              cRamMBs * _1M);         RC_CHECK();
    159     rc = CFGMR3InsertInteger(pRoot, "NumCPUs",              cNumCpus);              RC_CHECK();
     159    rc = CFGMR3InsertInteger(pRoot, "NumCPUs",              cCpus);                 RC_CHECK();
    160160    rc = CFGMR3InsertInteger(pRoot, "TimerMillies",         10);                    RC_CHECK();
    161161    rc = CFGMR3InsertInteger(pRoot, "RawR3Enabled",         1);     /* boolean */   RC_CHECK();
     
    279279    rc = CFGMR3InsertNode(pInst,    "Config", &pBiosCfg);                           RC_CHECK();
    280280    rc = CFGMR3InsertInteger(pBiosCfg,  "RamSize",              cRamMBs * _1M);     RC_CHECK();
    281     rc = CFGMR3InsertInteger(pBiosCfg,  "NumCPUs",              cNumCpus);          RC_CHECK();
     281    rc = CFGMR3InsertInteger(pBiosCfg,  "NumCPUs",              cCpus);             RC_CHECK();
    282282    rc = CFGMR3InsertString(pBiosCfg,   "HardDiskDevice",       "piix3ide");        RC_CHECK();
    283283    rc = CFGMR3InsertString(pBiosCfg,   "FloppyDevice",         "i82078");          RC_CHECK();
     
    465465        rc = CFGMR3InsertNode(pInst,    "Config", &pCfg);                           RC_CHECK();
    466466        rc = CFGMR3InsertInteger(pCfg,  "RamSize",          cRamMBs * _1M);         RC_CHECK();
    467         rc = CFGMR3InsertInteger(pCfg,  "NumCPUs",          cNumCpus);              RC_CHECK();
     467        rc = CFGMR3InsertInteger(pCfg,  "NumCPUs",          cCpus);                 RC_CHECK();
    468468
    469469        rc = CFGMR3InsertInteger(pCfg,  "IOAPIC", fIOAPIC);                         RC_CHECK();
     
    12041204
    12051205#elif defined(VBOX_WITH_NETFLT) && !defined(RT_OS_WINDOWS) /** @todo merge in the windows stuff too */
    1206                     /* 
    1207                      * This is the new VBoxNetFlt+IntNet stuff. 
     1206                    /*
     1207                     * This is the new VBoxNetFlt+IntNet stuff.
    12081208                     */
    12091209                    if (fSniffer)
     
    12361236                    const char *pszTrunk = szTrunk;
    12371237
    1238 # elif defined(RT_OS_SOLARIS) 
     1238# elif defined(RT_OS_SOLARIS)
    12391239                    /* The name is on the form format 'ifX - long name, chop it off at space. */
    12401240                    char szTrunk[8];
    12411241                    strncpy(szTrunk, pszHifName, sizeof(szTrunk));
    12421242                    char *pszSpace = (char *)memchr(szTrunk, ' ', sizeof(szTrunk));
    1243                    
     1243
    12441244                    /*
    12451245                     * Currently don't bother about malformed names here for the sake of people using
     
    12501250                        *pszSpace = '\0';
    12511251                    const char *pszTrunk = szTrunk;
    1252 # else 
     1252# else
    12531253#  error "PORTME (VBOX_WITH_NETFLT)"
    12541254# endif
     
    12691269                        rc = CFGMR3InsertInteger(pCfg, "SharedMacOnWire", true);    RC_CHECK();
    12701270                    }
    1271 # else 
     1271# else
    12721272                    /** @todo PORTME: wireless detection */
    12731273# endif
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