Changeset 561 for trunk/src/3rdparty/phonon/phonon/mediasource.cpp
- Timestamp:
- Feb 11, 2010, 11:19:06 PM (16 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
-
Property svn:mergeinfo
set to (toggle deleted branches)
/branches/vendor/nokia/qt/4.6.1 merged eligible /branches/vendor/nokia/qt/current merged eligible /branches/vendor/trolltech/qt/current 3-149
-
Property svn:mergeinfo
set to (toggle deleted branches)
-
trunk/src/3rdparty/phonon/phonon/mediasource.cpp
r2 r561 7 7 version 2.1 of the License, or (at your option) version 3, or any 8 8 later version accepted by the membership of KDE e.V. (or its 9 successor approved by the membership of KDE e.V.), Trolltech ASA9 successor approved by the membership of KDE e.V.), Nokia Corporation 10 10 (or its successors, if any) and the KDE Free Qt Foundation, which shall 11 11 act as a proxy defined in Section 6 of version 3 of the license. … … 141 141 #ifndef QT_NO_PHONON_ABSTRACTMEDIASTREAM 142 142 if (autoDelete) { 143 delete stream; 144 delete ioDevice; 143 //here we use deleteLater because this object 144 //might be destroyed from another thread 145 if (stream) 146 stream->deleteLater(); 147 if (ioDevice) 148 ioDevice->deleteLater(); 145 149 } 146 150 #endif //QT_NO_PHONON_ABSTRACTMEDIASTREAM
Note:
See TracChangeset
for help on using the changeset viewer.