summaryrefslogtreecommitdiff
path: root/core/multimedia/opieplayer/wavplugin/wavpluginimpl.cpp
authorbipolar <bipolar>2002-03-03 17:13:17 (UTC)
committer bipolar <bipolar>2002-03-03 17:13:17 (UTC)
commita99347380a9006ec81a9dba2340d6aaab690a86e (patch) (side-by-side diff)
tree73fdc2eff476fba2113172ed881dd64a4031def6 /core/multimedia/opieplayer/wavplugin/wavpluginimpl.cpp
parent0e245156b28b70be5cd98a58a9256fe5e2739562 (diff)
downloadopie-a99347380a9006ec81a9dba2340d6aaab690a86e.zip
opie-a99347380a9006ec81a9dba2340d6aaab690a86e.tar.gz
opie-a99347380a9006ec81a9dba2340d6aaab690a86e.tar.bz2
commited by ljp (llornkcor) reverted to qpe's interface for compatibility. Added playlist features:
save, remove, and have different ones. Uncommented code for background image and added opielogo.
Diffstat (limited to 'core/multimedia/opieplayer/wavplugin/wavpluginimpl.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/multimedia/opieplayer/wavplugin/wavpluginimpl.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/multimedia/opieplayer/wavplugin/wavpluginimpl.cpp b/core/multimedia/opieplayer/wavplugin/wavpluginimpl.cpp
index 2923180..c232d7b 100644
--- a/core/multimedia/opieplayer/wavplugin/wavpluginimpl.cpp
+++ b/core/multimedia/opieplayer/wavplugin/wavpluginimpl.cpp
@@ -29,14 +29,14 @@ WavPluginImpl::WavPluginImpl()
WavPluginImpl::~WavPluginImpl()
{
if ( libmadplugin )
- delete libmadplugin;
+ delete libmadplugin;
}
MediaPlayerDecoder *WavPluginImpl::decoder()
{
if ( !libmadplugin )
- libmadplugin = new WavPlugin;
+ libmadplugin = new WavPlugin;
return libmadplugin;
}
@@ -53,8 +53,8 @@ MediaPlayerEncoder *WavPluginImpl::encoder()
QRESULT WavPluginImpl::queryInterface( const QUuid &uuid, QUnknownInterface **iface )
{
*iface = 0;
- if ( ( uuid == IID_QUnknown ) || ( uuid == IID_MediaPlayerPlugin ) )
- *iface = this, (*iface)->addRef();
+ if ( ( uuid == IID_QUnknown ) || ( uuid == IID_MediaPlayerPlugin ) )
+ *iface = this, (*iface)->addRef();
return QS_OK;
}