From fee1e7c349224c8db146003a365b3c8c7917d96b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lorenz=20H=C3=BCbschle-Schneider?= Date: Tue, 21 Oct 2014 14:42:59 +0200 Subject: [PATCH] JSResolverHelper: Fix typo in accountId() function name --- src/libtomahawk/resolvers/JSResolverHelper.cpp | 2 +- src/libtomahawk/resolvers/JSResolverHelper.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libtomahawk/resolvers/JSResolverHelper.cpp b/src/libtomahawk/resolvers/JSResolverHelper.cpp index 6ca574758..9a26719e7 100644 --- a/src/libtomahawk/resolvers/JSResolverHelper.cpp +++ b/src/libtomahawk/resolvers/JSResolverHelper.cpp @@ -429,7 +429,7 @@ JSResolverHelper::setResolverConfig( const QVariantMap& config ) QString -JSResolverHelper::acountId() +JSResolverHelper::accountId() { return m_resolver->d_func()->accountId; } diff --git a/src/libtomahawk/resolvers/JSResolverHelper.h b/src/libtomahawk/resolvers/JSResolverHelper.h index b3033e4b0..f94ec1d4a 100644 --- a/src/libtomahawk/resolvers/JSResolverHelper.h +++ b/src/libtomahawk/resolvers/JSResolverHelper.h @@ -54,7 +54,7 @@ public: * * INTERNAL USE ONLY! */ - Q_INVOKABLE QString acountId(); + Q_INVOKABLE QString accountId(); Q_INVOKABLE void addCustomUrlHandler( const QString& protocol, const QString& callbackFuncName, const QString& isAsynchronous = "false" ); Q_INVOKABLE void reportStreamUrl( const QString& qid, const QString& streamUrl );