Skip to content

Commit

Permalink
Fix usage examples. [#9 state:resolved milestone:1.0.1]
Browse files Browse the repository at this point in the history
  • Loading branch information
ayoy committed Aug 1, 2010
1 parent 00641cd commit 5a9e728
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/examples/requestToken.cpp
Expand Up @@ -15,7 +15,7 @@ QOAuth::ParamMap reply =

// if no error occurred, read the received token and token secret
if ( qoauth->error() == QOAuth::NoError ) {
token = reply.value( QOAuth::ParamToken );
tokenSecret = reply.value( QOAuth::ParamTokenSecret );
token = reply.value( QOAuth::tokenParameterName() );
tokenSecret = reply.value( QOAuth::tokenSecretParameterName() );
}

0 comments on commit 5a9e728

Please sign in to comment.