diff -r a180113055cb -r 83d6a149c755 example/FlickrAuthApp/src/sessionSP.cpp --- a/example/FlickrAuthApp/src/sessionSP.cpp Thu Sep 23 17:43:31 2010 +0530 +++ b/example/FlickrAuthApp/src/sessionSP.cpp Mon Oct 11 21:59:54 2010 +0530 @@ -28,9 +28,6 @@ static const QString kAPIRestURL = "http://api.flickr.com/services/rest/"; -static const int kMaxBurstRequests = 3; -static const int kBurstDuration = 2; - static FBSession* sharedSession = NULL; /////////////////////////////////////////////////////////////////////////////////////////////////// @@ -59,6 +56,7 @@ iApiSecret ( aAppSecret ), m_Client(new SmfCredMgrClient(this)) { + Q_UNUSED(aGetSessionProxy) if (!sharedSession) { sharedSession = this; @@ -184,6 +182,7 @@ bool FBSession::performRequest(FBRequest* aRequest, bool aEnqueue) { // Stagger requests that happen in short bursts to prevent the server from rejecting // them for making too many requests in a short time + Q_UNUSED(aEnqueue) qDebug()<<"Inside FBSession::performRequest"; aRequest->connect(); return true;