Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[oauth] Fix string literal
  • Loading branch information
elpaso committed Jul 19, 2018
1 parent 2e88dd5 commit bb4f737
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/auth/oauth2/qgso2.cpp
Expand Up @@ -156,8 +156,8 @@ void QgsO2::link()
}

setLinked( false );
setToken( "" );
setTokenSecret( "" );
setToken( QString() );
setTokenSecret( QString() );
setExtraTokens( QVariantMap() );
setRefreshToken( QString() );
setExpires( 0 );
Expand Down

0 comments on commit bb4f737

Please sign in to comment.