Ignore:
Timestamp:
Feb 11, 2010, 11:19:06 PM (15 years ago)
Author:
Dmitry A. Kuminov
Message:

trunk: Merged in qt 4.6.1 sources.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk

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

    r2 r561  
    248248        {
    249249            m_thread = new WorkerThread();
    250             connect(this, SIGNAL(outOfData(QIODevice*, QByteArray*, bool*)), m_thread, SLOT(stream(QIODevice*, QByteArray*, bool*)));
     250            connect(this, SIGNAL(outOfData(QIODevice*,QByteArray*,bool*)), m_thread, SLOT(stream(QIODevice*,QByteArray*,bool*)));
    251251            m_thread->start();
    252252            m_soundBuffer1.waveHeader = new WAVEHDR;
     
    259259        {
    260260            stop();
    261             disconnect(this, SIGNAL(outOfData(QIODevice*, QByteArray*, bool*)), m_thread, SLOT(stream(QIODevice*, QByteArray*, bool*)));
     261            disconnect(this, SIGNAL(outOfData(QIODevice*,QByteArray*,bool*)), m_thread, SLOT(stream(QIODevice*,QByteArray*,bool*)));
    262262            do { //The event loop of m_thread might not be started, yet
    263263                m_thread->quit(); //If the event loop is not started yet quit() does nothing
Note: See TracChangeset for help on using the changeset viewer.