VirtualBox

Ignore:
Timestamp:
Aug 16, 2010 3:00:05 PM (14 years ago)
Author:
vboxsync
Message:

Main, frontends: unsigned long long -> long long

Location:
trunk/src/VBox/Frontends/VirtualBox/src
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VirtualBox/src/VBoxFBOverlay.h

    r29922 r31698  
    20482048
    20492049#endif /* #ifndef __VBoxFBOverlay_h__ */
    2050 
  • trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIFrameBuffer.cpp

    r29219 r31698  
    4646{
    4747    AssertMsg(m_pMachineView, ("UIMachineView must not be null\n"));
    48     m_uWinId = (m_pMachineView && m_pMachineView->viewport()) ? (ULONG64)m_pMachineView->viewport()->winId() : 0;
     48    m_WinId = (m_pMachineView && m_pMachineView->viewport()) ? (LONG64)m_pMachineView->viewport()->winId() : 0;
    4949    int rc = RTCritSectInit(&m_critSect);
    5050    AssertRC(rc);
     
    129129}
    130130
    131 STDMETHODIMP UIFrameBuffer::COMGETTER(WinId) (ULONG64 *puWinId)
    132 {
    133     if (!puWinId)
    134         return E_POINTER;
    135     *puWinId = m_uWinId;
     131STDMETHODIMP UIFrameBuffer::COMGETTER(WinId) (LONG64 *pWinId)
     132{
     133    if (!pWinId)
     134        return E_POINTER;
     135    *pWinId = m_WinId;
    136136    return S_OK;
    137137}
     
    248248{
    249249    m_pMachineView = pView;
    250     m_uWinId = (m_pMachineView && m_pMachineView->viewport()) ? (ULONG64)m_pMachineView->viewport()->winId() : 0;
     250    m_WinId = (m_pMachineView && m_pMachineView->viewport()) ? (LONG64)m_pMachineView->viewport()->winId() : 0;
    251251}
    252252#endif
    253 
  • trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIFrameBuffer.h

    r30753 r31698  
    156156    STDMETHOD(COMGETTER(HeightReduction)) (ULONG *puHeightReduction);
    157157    STDMETHOD(COMGETTER(Overlay)) (IFramebufferOverlay **ppOverlay);
    158     STDMETHOD(COMGETTER(WinId)) (ULONG64 *pWinId);
     158    STDMETHOD(COMGETTER(WinId)) (LONG64 *pWinId);
    159159
    160160    STDMETHOD(Lock)();
     
    239239    int m_height;
    240240    QSize m_scaledSize;
    241     uint64_t m_uWinId;
     241    int64_t m_WinId;
    242242    bool m_fIsDeleted;
    243243
     
    250250
    251251#endif // !___UIFrameBuffer_h___
    252 
  • trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIIndicatorsPool.cpp

    r29734 r31698  
    280280
    281281        QString strFlags, strCount;
    282         ULONG64 uTimestamp;
    283         machine.GetGuestProperty("/VirtualBox/GuestInfo/Net/Count", strCount, uTimestamp, strFlags);
    284         bool fPropsValid = (u64Now - uTimestamp < UINT64_C(60000000000)); /* timeout beacon */
     282        LONG64 iTimestamp;
     283        machine.GetGuestProperty("/VirtualBox/GuestInfo/Net/Count", strCount, iTimestamp, strFlags);
     284        bool fPropsValid = (u64Now - iTimestamp < UINT64_C(60000000000)); /* timeout beacon */
    285285
    286286        QStringList ipList, macList;
     
    729729
    730730#include "UIIndicatorsPool.moc"
    731 
  • trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineView.h

    r31341 r31698  
    231231
    232232#endif // !___UIMachineView_h___
    233 
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