Changeset 769 for trunk/src/3rdparty/phonon/mmf/backend.cpp
- Timestamp:
- Aug 2, 2010, 9:27:30 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/vendor/nokia/qt/4.6.3 (added) merged: 768 /branches/vendor/nokia/qt/current merged: 767 /branches/vendor/nokia/qt/4.6.2 removed
- Property svn:mergeinfo changed
-
trunk/src/3rdparty/phonon/mmf/backend.cpp
r651 r769 25 25 26 26 #include "abstractaudioeffect.h" 27 #include "ancestormovemonitor.h"28 27 #include "audiooutput.h" 29 28 #include "audioplayer.h" … … 45 44 Backend::Backend(QObject *parent) 46 45 : QObject(parent) 46 #ifndef PHONON_MMF_VIDEO_SURFACES 47 47 , m_ancestorMoveMonitor(new AncestorMoveMonitor(this)) 48 #endif 48 49 , m_effectFactory(new EffectFactory(this)) 49 50 { … … 87 88 return m_effectFactory->createAudioEffect(type, parent); 88 89 } 90 89 91 case VideoWidgetClass: 90 result = new VideoWidget(m_ancestorMoveMonitor.data(), qobject_cast<QWidget *>(parent)); 92 { 93 VideoWidget *widget = new VideoWidget(qobject_cast<QWidget *>(parent)); 94 #ifndef PHONON_MMF_VIDEO_SURFACES 95 widget->setAncestorMoveMonitor(m_ancestorMoveMonitor.data()); 96 #endif 97 result = widget; 98 } 91 99 break; 92 100
Note:
See TracChangeset
for help on using the changeset viewer.