diff --git a/src/main.cpp b/src/main.cpp index fdc6361f2..2f0c8b36b 100755 --- a/src/main.cpp +++ b/src/main.cpp @@ -42,6 +42,8 @@ #include #include +#include + #if defined (Q_OS_MAC) extern void disableWindowTabbing(); @@ -173,6 +175,29 @@ int main(int argc, char* argv[]) { qApp->showPolls(); qApp->mainForm()->tabWidget()->feedMessageViewer()->feedsView()->loadAllExpandStates(); + /* + OAuth2Service* srv = new OAuth2Service( + "https://accounts.google.com/o/oauth2/auth", + "https://accounts.google.com/o/oauth2/token", + "369069180494-j66bgeciouinec1eem7fhvj6qm0as7q3.apps.googleusercontent.com", + "vppQtxrEeBkImiXcjGYl9NxZ", + "https://mail.google.com/"); + + QObject::connect(srv, &OAuth2Service::authCodeObtained, [](QString auth_code) { + int a = 5; + }); + QObject::connect(srv, &OAuth2Service::authFailed, []() { + int a = 5; + }); + QObject::connect(srv, &OAuth2Service::tokensReceived, [](QString acc, QString ref, int exp) { + int a = 5; + }); + QObject::connect(srv, &OAuth2Service::tokensRetrieveError, [](QString err, QString desc) { + int a = 5; + }); + srv->login(); + */ + // Enter global event loop. return Application::exec(); } diff --git a/src/miscellaneous/databasequeries.cpp b/src/miscellaneous/databasequeries.cpp index 4ce0ea468..1bfba9bf5 100755 --- a/src/miscellaneous/databasequeries.cpp +++ b/src/miscellaneous/databasequeries.cpp @@ -1490,6 +1490,7 @@ Assignment DatabaseQueries::getCategories(QSqlDatabase db, int account_id, bool* return categories; } +#if defined(USE_WEBENGINE) bool DatabaseQueries::deleteInoreaderAccount(QSqlDatabase db, int account_id) { QSqlQuery q(db); @@ -1499,7 +1500,6 @@ bool DatabaseQueries::deleteInoreaderAccount(QSqlDatabase db, int account_id) { return q.exec(); } -#if defined(USE_WEBENGINE) Assignment DatabaseQueries::getInoreaderFeeds(QSqlDatabase db, int account_id, bool* ok) { Assignment feeds; QSqlQuery q(db);