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

More logical ordering of items

This commit is contained in:
Jeff Mitchell 2011-10-20 16:13:17 -04:00
parent 4e8c99554a
commit 52bb303ffa
2 changed files with 2 additions and 2 deletions

View File

@ -128,7 +128,7 @@ InfoSystem::getInfo( const InfoRequestData &requestData, uint timeoutMillis, boo
void
InfoSystem::getInfo( const QString &caller, const InfoTypeMap &inputMap, const QVariantMap &customData, const InfoTimeoutMap &timeoutMap, bool allSources )
InfoSystem::getInfo( const QString &caller, const QVariantMap &customData, const InfoTypeMap &inputMap, const InfoTimeoutMap &timeoutMap, bool allSources )
{
InfoRequestData requestData;
requestData.caller = caller;

View File

@ -236,7 +236,7 @@ public:
void getInfo( const InfoRequestData &requestData, uint timeoutMillis = 0, bool allSources = false );
//WARNING: if changing timeoutMillis above, also change in below function in .cpp file
void getInfo( const QString &caller, const InfoTypeMap &inputMap, const QVariantMap &customData, const InfoTimeoutMap &timeoutMap = InfoTimeoutMap(), bool allSources = false );
void getInfo( const QString &caller, const QVariantMap &customData, const InfoTypeMap &inputMap, const InfoTimeoutMap &timeoutMap = InfoTimeoutMap(), bool allSources = false );
void pushInfo( const QString &caller, const InfoType type, const QVariant &input );
void pushInfo( const QString &caller, const InfoTypeMap &input );