mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Make Facebook more user friendly
The current way that facebook works is terrible: it's scattered around tons of files ( at least 4 different files and classes ) this moves things around a bit, add a disconnect button that was missing, cleans tons of code and fix inconsistencies. I will also redo this part for 5.0, but it's too late for 4.5 Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
e945134cc4
commit
d59e89e569
8 changed files with 110 additions and 390 deletions
|
|
@ -94,7 +94,7 @@ void FacebookManager::tryLogin(const QUrl& loginResponse)
|
|||
#endif
|
||||
requestUserId();
|
||||
sync();
|
||||
emit justLoggedIn();
|
||||
emit justLoggedIn(true);
|
||||
}
|
||||
|
||||
void FacebookManager::logout()
|
||||
|
|
@ -115,7 +115,7 @@ void FacebookManager::logout()
|
|||
prefs.facebook.album_id = NULL;
|
||||
prefs.facebook.user_id = NULL;
|
||||
#endif
|
||||
emit justLoggedOut();
|
||||
emit justLoggedOut(true);
|
||||
}
|
||||
|
||||
void FacebookManager::requestAlbumId()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue