1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-03-23 01:09:42 +01:00

Add missing return

This commit is contained in:
Dominik Schmidt 2012-03-28 15:03:40 +02:00
parent 8e0f44a374
commit bac82c0abf

View File

@ -95,7 +95,7 @@ InfoSystem::InfoPlugin*
XmppAccount::infoPlugin()
{
if( !m_xmppSipPlugin.isNull() )
m_xmppSipPlugin.data()->infoPlugin();
return m_xmppSipPlugin.data()->infoPlugin();
return 0;
}