From d3ba0a0c7552c0310b2c987ca4af11eff569d8f4 Mon Sep 17 00:00:00 2001 From: Leo Franchi <lfranchi@kde.org> Date: Sat, 5 Mar 2011 19:02:47 -0500 Subject: [PATCH] unused arg is unused --- src/web/api_v1.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/web/api_v1.h b/src/web/api_v1.h index 73f2c68b6..243f52449 100644 --- a/src/web/api_v1.h +++ b/src/web/api_v1.h @@ -41,8 +41,8 @@ public: public slots: // authenticating uses /auth_1 // we redirect to /auth_2 for the callback - void auth_1( QxtWebRequestEvent* event ); - void auth_2( QxtWebRequestEvent* event ); + void auth_1( QxtWebRequestEvent* event, QString unused = QString() ); + void auth_2( QxtWebRequestEvent* event, QString unused = QString() ); // all v1 api calls go to /api/ void api( QxtWebRequestEvent* event );