VirtualBox

Changeset 63322 in vbox


Ignore:
Timestamp:
Aug 11, 2016 11:07:49 AM (8 years ago)
Author:
vboxsync
Message:

QtGui: warnings

Location:
trunk/src/VBox/Frontends/VirtualBox/src
Files:
1 added
10 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIDnDDataObject_win.cpp

    r63311 r63322  
    11/* $Id$ */
    22/** @file
    3  * VBox Qt GUI - UIDnDDrag class implementation. This class implements the
    4  * IDataObject interface.
     3 * VBox Qt GUI - UIDnDDrag class implementation (implements IDataObject).
    54 */
    65
     
    5453    HRESULT hr;
    5554
    56     ULONG cMaxFormats        = 16; /* Maximum number of registered formats. */
     55    int  cMaxFormats        = 16; /* Maximum number of registered formats. */
    5756    ULONG cRegisteredFormats = 0;
    5857
     
    6463        RT_BZERO(m_pStgMedium, sizeof(STGMEDIUM) * cMaxFormats);
    6564
    66         for (int i = 0;
    67              (   i < lstFormats.size()
    68               && i < cMaxFormats); i++)
     65        for (int i = 0; i < lstFormats.size() && i < cMaxFormats; i++)
    6966        {
    7067            const QString &strFormat = lstFormats.at(i);
     
    247244                         m_strFormat.toUtf8().constData(), m_pvData, m_cbData));
    248245
    249                 QVariant::Type vaType;
     246                QVariant::Type vaType = QVariant::Invalid; /* MSC: Might be used uninitialized otherwise! */
    250247                QString strMIMEType;
    251248                if (    (pFormatEtc->tymed & TYMED_HGLOBAL)
    252                      && (pFormatEtc->dwAspect == DVASPECT_CONTENT)
     249                     && pFormatEtc->dwAspect == DVASPECT_CONTENT
    253250                     && (   pFormatEtc->cfFormat == CF_TEXT
    254251                         || pFormatEtc->cfFormat == CF_UNICODETEXT)
     
    260257                }
    261258                else if (   (pFormatEtc->tymed & TYMED_HGLOBAL)
    262                          && (pFormatEtc->dwAspect == DVASPECT_CONTENT)
    263                          && (pFormatEtc->cfFormat == CF_HDROP))
     259                         && pFormatEtc->dwAspect == DVASPECT_CONTENT
     260                         && pFormatEtc->cfFormat == CF_HDROP)
    264261                {
    265262                    strMIMEType = "text/uri-list";
     
    299296                {
    300297                    if (m_pDnDHandler)
    301                     {
    302                         rc = m_pDnDHandler->retrieveData(Qt::CopyAction,
    303                                                          strMIMEType, vaType, m_vaData);
    304                     }
     298                        rc = m_pDnDHandler->retrieveData(Qt::CopyAction, strMIMEType, vaType, m_vaData);
    305299                    else
    306300                        rc = VERR_NOT_FOUND;
     
    324318                        QStringList lstFilesURI = m_vaData.toStringList();
    325319                        QStringList lstFiles;
    326                         for (size_t i = 0; i < lstFilesURI.size(); i++)
     320                        for (int i = 0; i < lstFilesURI.size(); i++)
    327321                        {
    328322                            char *pszFilePath = RTUriFilePath(lstFilesURI.at(i).toUtf8().constData());
     
    340334                        }
    341335
    342                         size_t cFiles = lstFiles.size();
     336                        int cFiles = lstFiles.size();
    343337                        LogFlowThisFunc(("Files (%zu)\n", cFiles));
    344338                        if (   RT_SUCCESS(rc)
     
    346340                        {
    347341                            size_t cchFiles = 0; /* Number of characters. */
    348                             for (size_t i = 0; i < cFiles; i++)
     342                            for (int i = 0; i < cFiles; i++)
    349343                            {
    350344                                const char *pszFile = lstFiles.at(i).toUtf8().constData();
     
    369363
    370364                                LogFlowThisFunc(("Encoded:\n"));
    371                                 for (size_t i = 0; i < cFiles; i++)
     365                                for (int i = 0; i < cFiles; i++)
    372366                                {
    373367                                    const char *pszFile = lstFiles.at(i).toUtf8().constData();
     
    529523STDMETHODIMP UIDnDDataObject::GetDataHere(LPFORMATETC pFormatEtc, LPSTGMEDIUM pMedium)
    530524{
     525    RT_NOREF(pFormatEtc, pMedium);
    531526    LogFlowFunc(("\n"));
    532527    return DATA_E_FORMATETC;
     
    542537STDMETHODIMP UIDnDDataObject::QueryGetData(LPFORMATETC pFormatEtc)
    543538{
    544     return (LookupFormatEtc(pFormatEtc, NULL /* puIndex */)) ? S_OK : DV_E_FORMATETC;
    545 }
    546 
    547 STDMETHODIMP UIDnDDataObject::GetCanonicalFormatEtc(LPFORMATETC pFormatEct, LPFORMATETC pFormatEtcOut)
    548 {
     539    return LookupFormatEtc(pFormatEtc, NULL /* puIndex */) ? S_OK : DV_E_FORMATETC;
     540}
     541
     542STDMETHODIMP UIDnDDataObject::GetCanonicalFormatEtc(LPFORMATETC pFormatEtc, LPFORMATETC pFormatEtcOut)
     543{
     544    RT_NOREF(pFormatEtc);
    549545    LogFlowFunc(("\n"));
    550546
     
    556552STDMETHODIMP UIDnDDataObject::SetData(LPFORMATETC pFormatEtc, LPSTGMEDIUM pMedium, BOOL fRelease)
    557553{
     554    RT_NOREF(pFormatEtc, pMedium, fRelease);
    558555    return E_NOTIMPL;
    559556}
     
    576573}
    577574
    578 STDMETHODIMP UIDnDDataObject::DAdvise(LPFORMATETC pFormatEtc, DWORD advf, IAdviseSink *pAdvSink, DWORD *pdwConnection)
    579 {
     575STDMETHODIMP UIDnDDataObject::DAdvise(LPFORMATETC pFormatEtc, DWORD fAdvise, IAdviseSink *pAdvSink, DWORD *pdwConnection)
     576{
     577    RT_NOREF(pFormatEtc, fAdvise, pAdvSink, pdwConnection);
    580578    return OLE_E_ADVISENOTSUPPORTED;
    581579}
     
    583581STDMETHODIMP UIDnDDataObject::DUnadvise(DWORD dwConnection)
    584582{
     583    RT_NOREF(dwConnection);
    585584    return OLE_E_ADVISENOTSUPPORTED;
    586585}
     
    588587STDMETHODIMP UIDnDDataObject::EnumDAdvise(IEnumSTATDATA **ppEnumAdvise)
    589588{
     589    RT_NOREF(ppEnumAdvise);
    590590    return OLE_E_ADVISENOTSUPPORTED;
    591591}
  • trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIDnDDataObject_win.h

    r62493 r63322  
    6363    STDMETHOD(GetDataHere)(LPFORMATETC pFormatEtc, LPSTGMEDIUM pMedium);
    6464    STDMETHOD(QueryGetData)(LPFORMATETC pFormatEtc);
    65     STDMETHOD(GetCanonicalFormatEtc)(LPFORMATETC pFormatEct,  LPFORMATETC pFormatEtcOut);
     65    STDMETHOD(GetCanonicalFormatEtc)(LPFORMATETC pFormatEtc,  LPFORMATETC pFormatEtcOut);
    6666    STDMETHOD(SetData)(LPFORMATETC pFormatEtc, LPSTGMEDIUM pMedium, BOOL fRelease);
    6767    STDMETHOD(EnumFormatEtc)(DWORD dwDirection, IEnumFORMATETC **ppEnumFormatEtc);
    68     STDMETHOD(DAdvise)(LPFORMATETC pFormatEtc, DWORD advf, IAdviseSink *pAdvSink, DWORD *pdwConnection);
     68    STDMETHOD(DAdvise)(LPFORMATETC pFormatEtc, DWORD fAdvise, IAdviseSink *pAdvSink, DWORD *pdwConnection);
    6969    STDMETHOD(DUnadvise)(DWORD dwConnection);
    7070    STDMETHOD(EnumDAdvise)(IEnumSTATDATA **ppEnumAdvise);
     
    110110};
    111111
    112 #endif /* ___UIDnDDataObject_win_h___ */
     112#endif /* !___UIDnDDataObject_win_h___ */
    113113
  • trunk/src/VBox/Frontends/VirtualBox/src/runtime/information/UIInformationDataItem.cpp

    r62599 r63322  
    7373QVariant UIInformationDataItem::data(const QModelIndex &index, int role) const
    7474{
     75    RT_NOREF(index);
    7576    switch (role)
    7677    {
  • trunk/src/VBox/Frontends/VirtualBox/src/runtime/information/UIInformationItem.cpp

    r62670 r63322  
    122122QSize UIInformationItem::sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index) const
    123123{
     124    RT_NOREF(option);
     125
    124126    /* Update data: */
    125127    updateData(index);
  • trunk/src/VBox/Frontends/VirtualBox/src/selector/graphics/details/UIGDetailsSet.cpp

    r62493 r63322  
    382382#ifdef VBOX_WITH_PARALLEL_PORTS
    383383            case DetailsElementType_Parallel:
    384 #endif /* VBOX_WITH_PARALLEL_PORTS */
     384#endif
    385385            case DetailsElementType_USB:
    386386            case DetailsElementType_SF:
     
    401401                break;
    402402            }
     403            case DetailsElementType_Invalid: AssertFailed(); break; /* Shut up, MSC! */
    403404        }
    404405    }
     
    442443#ifdef VBOX_WITH_PARALLEL_PORTS
    443444            case DetailsElementType_Parallel:
    444 #endif /* VBOX_WITH_PARALLEL_PORTS */
     445#endif
    445446            case DetailsElementType_USB:
    446447            case DetailsElementType_SF:
     
    456457                break;
    457458            }
     459            case DetailsElementType_Invalid: AssertFailed(); break; /* Shut up, MSC! */
    458460        }
    459461    }
     
    497499#ifdef VBOX_WITH_PARALLEL_PORTS
    498500            case DetailsElementType_Parallel:
    499 #endif /* VBOX_WITH_PARALLEL_PORTS */
     501#endif
    500502            case DetailsElementType_USB:
    501503            case DetailsElementType_SF:
     
    547549                break;
    548550            }
     551            case DetailsElementType_Invalid: AssertFailed(); break; /* Shut up, MSC! */
    549552        }
    550553    }
     
    586589#ifdef VBOX_WITH_PARALLEL_PORTS
    587590        case DetailsElementType_Parallel:    return new UIGDetailsElementParallel(this, fOpen);
    588 #endif /* VBOX_WITH_PARALLEL_PORTS */
     591#endif
    589592        case DetailsElementType_USB:         return new UIGDetailsElementUSB(this, fOpen);
    590593        case DetailsElementType_SF:          return new UIGDetailsElementSF(this, fOpen);
    591594        case DetailsElementType_UI:          return new UIGDetailsElementUI(this, fOpen);
    592595        case DetailsElementType_Description: return new UIGDetailsElementDescription(this, fOpen);
     596        case DetailsElementType_Invalid:     AssertFailed(); break; /* Shut up, MSC! */
    593597    }
    594598    return 0;
  • trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsStorage.cpp

    r61600 r63322  
    34153415            break;
    34163416        }
     3417        default: break; /* Shut up, MSC! */
    34173418    }
    34183419
  • trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIBootTable.cpp

    r62493 r63322  
    4141        case KDeviceType_HardDisk: setIcon(UIIconPool::iconSet(":/hd_16px.png")); break;
    4242        case KDeviceType_Network:  setIcon(UIIconPool::iconSet(":/nw_16px.png")); break;
     43        default: break; /* Shut up, MSC! */
    4344    }
    4445    retranslateUi();
  • trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIHostComboEditor.cpp

    r62493 r63322  
    255255#elif defined(VBOX_WS_WIN)
    256256
    257     return ((iKeyCode >= VK_SHIFT && iKeyCode <= VK_CAPITAL) ||
    258             (iKeyCode >= VK_LSHIFT && iKeyCode <= VK_RMENU) ||
    259             (iKeyCode >= VK_F1 && iKeyCode <= VK_F24) ||
    260             iKeyCode == VK_NUMLOCK || iKeyCode == VK_SCROLL ||
    261             iKeyCode == VK_LWIN || iKeyCode == VK_RWIN ||
    262             iKeyCode == VK_APPS ||
    263             iKeyCode == VK_PRINT);
     257    return (iKeyCode >= VK_SHIFT  && iKeyCode <= VK_CAPITAL)
     258        || (iKeyCode >= VK_LSHIFT && iKeyCode <= VK_RMENU)
     259        || (iKeyCode >= VK_F1     && iKeyCode <= VK_F24)
     260        || iKeyCode == VK_NUMLOCK
     261        || iKeyCode == VK_SCROLL
     262        || iKeyCode == VK_LWIN
     263        || iKeyCode == VK_RWIN
     264        || iKeyCode == VK_APPS
     265        || iKeyCode == VK_PRINT;
    264266
    265267#elif defined(VBOX_WS_X11)
     
    276278# warning "port me!"
    277279
     280    return false;
    278281#endif
    279 
    280     return false;
    281282}
    282283
  • trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIPortForwardingTable.cpp

    r62493 r63322  
    494494        default: return false;
    495495    }
    496     /* Return false value: */
    497     return false;
     496    /* not reached! */
    498497}
    499498
  • trunk/src/VBox/Frontends/VirtualBox/src/wizards/clonevm/UIWizardCloneVMPageBasic3.cpp

    r62493 r63322  
    5353        case KCloneMode_MachineAndChildStates: m_pMachineAndChildsRadio->setChecked(true); break;
    5454        case KCloneMode_AllStates: m_pAllRadio->setChecked(true); break;
     55        case KCloneMode_Max: break; /* Shut up, MSC! */
    5556    }
    5657}
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