Ignore:
Timestamp:
May 5, 2011, 5:36:53 AM (14 years ago)
Author:
Dmitry A. Kuminov
Message:

trunk: Merged in qt 4.7.2 sources from branches/vendor/nokia/qt.

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk

  • trunk/src/3rdparty/phonon/waveout/mediaobject.cpp

    r561 r846  
    5151            ushort b[256];
    5252            waveOutGetErrorText(error, (LPWSTR)b, 256);
    53             return QString::fromUtf16(b);
     53            return QString((const QChar *)b);
    5454        }
    5555
     
    7171
    7272
    73         void CALLBACK MediaObject::WaveOutCallBack(HWAVEOUT m_hWaveOut, UINT uMsg, DWORD dwInstance, DWORD dwParam1, DWORD dwParam2)
     73        void QT_WIN_CALLBACK MediaObject::WaveOutCallBack(HWAVEOUT m_hWaveOut, UINT uMsg, DWORD dwInstance, DWORD dwParam1, DWORD dwParam2)
    7474        {
    7575            Q_UNUSED(m_hWaveOut);
  • trunk/src/3rdparty/phonon/waveout/mediaobject.h

    r2 r846  
    113113            void playBuffer(WAVEHDR *waveHeader);
    114114
    115             static void CALLBACK WaveOutCallBack(HWAVEOUT hWaveOut, UINT uMsg, DWORD dwInstance, DWORD dwParam1, DWORD dwParam2);
     115            static void QT_WIN_CALLBACK WaveOutCallBack(HWAVEOUT hWaveOut, UINT uMsg, DWORD dwInstance, DWORD dwParam1, DWORD dwParam2);
    116116
    117117             struct {
Note: See TracChangeset for help on using the changeset viewer.