VirtualBox

Changeset 91722 in vbox for trunk


Ignore:
Timestamp:
Oct 14, 2021 12:25:38 PM (3 years ago)
Author:
vboxsync
Message:

Main: bugref:1909: Fixed compilation issues

Location:
trunk
Files:
4 edited

Legend:

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

    r91475 r91722  
    341341     * @param   pszComment                Comment to the string to resolve possible ambiguities
    342342     *                                    (NULL means no comment).
    343      * @param   iNum                      Number used to define plural form of the translation
     343     * @param   aNum                      Number used to define plural form of the translation
    344344     */
    345345    DECLR3CALLBACKMEMBER(const char *, pfnTranslate,(PCVBOXEXTPACKHLP pHlp,
    346                                                      const char *pszComponent,
    347                                                      const char *pszSourceText,
    348                                                      const char *pszComment,
    349                                                      const int   iNum));
     346                                                     const char  *pszComponent,
     347                                                     const char  *pszSourceText,
     348                                                     const char  *pszComment,
     349                                                     const size_t aNum));
    350350
    351351    DECLR3CALLBACKMEMBER(int, pfnReserved1,(PCVBOXEXTPACKHLP pHlp)); /**< Reserved for minor structure revisions. */
  • trunk/src/VBox/Main/include/ExtPackManagerImpl.h

    r91312 r91722  
    183183                                                       VBOXEXTPACK_IF_CS(IVetoEvent) **ppEventOut);
    184184    static DECLCALLBACK(const char *) i_hlpTranslate(PCVBOXEXTPACKHLP pHlp,
    185                                                      const char *pszComponent,
    186                                                      const char *pszSourceText,
    187                                                      const char *pszComment = NULL,
    188                                                      const int   iNum = -1);
     185                                                     const char  *pszComponent,
     186                                                     const char  *pszSourceText,
     187                                                     const char  *pszComment = NULL,
     188                                                     const size_t aNum = -1);
    189189    static DECLCALLBACK(int)      i_hlpReservedN(PCVBOXEXTPACKHLP pHlp);
    190190    /** @}  */
  • trunk/src/VBox/Main/src-all/ExtPackManagerImpl.cpp

    r91718 r91722  
    20152015/*static*/ DECLCALLBACK(const char *)
    20162016ExtPack::i_hlpTranslate(PCVBOXEXTPACKHLP pHlp,
    2017                         const char *pszComponent,
    2018                         const char *pszSourceText,
    2019                         const char *pszComment /* = NULL */,
    2020                         const int   iNum /* = -1 */)
     2017                        const char  *pszComponent,
     2018                        const char  *pszSourceText,
     2019                        const char  *pszComment /* = NULL */,
     2020                        const size_t aNum /* = -1 */)
    20212021{
    20222022    /*
     
    20302030#ifdef VBOX_WITH_MAIN_NLS
    20312031    return VirtualBoxTranslator::translate(m->pTrComponent, pszComponent,
    2032                                            pszSourceText,  pszComment, iNum);
     2032                                           pszSourceText,  pszComment, aNum);
    20332033#else
    20342034    NOREF(pszComponent);
    20352035    NOREF(pszComment);
    2036     NOREF(iNum);
     2036    NOREF(aNum);
    20372037    return pszSourceText;
    20382038#endif
  • trunk/src/VBox/Main/src-all/ExtPackUtil.cpp

    r91720 r91722  
    10911091            if (ObjInfo.cbObject >= 9*_1G64)
    10921092                rc = vboxExtPackReturnError(VERR_OUT_OF_RANGE, pszError, cbError,
    1093                                             ExtPackUtil::tr("'%s': too large (%'RU64 bytes)", "", ObjInfo.cbObject),
     1093                                            ExtPackUtil::tr("'%s': too large (%'RU64 bytes)", "", (size_t)ObjInfo.cbObject),
    10941094                                            pszName, (uint64_t)ObjInfo.cbObject);
    10951095            if (!RTFS_IS_FILE(ObjInfo.Attr.fMode))
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