Fix build.

This commit is contained in:
Martin Rotter 2017-10-12 10:23:25 +02:00
parent 870c90f636
commit ff43b26b74
2 changed files with 26 additions and 1 deletions

View File

@ -42,6 +42,8 @@
#include <QTimer> #include <QTimer>
#include <QTranslator> #include <QTranslator>
#include <network-web/oauth2service.h>
#if defined (Q_OS_MAC) #if defined (Q_OS_MAC)
extern void disableWindowTabbing(); extern void disableWindowTabbing();
@ -173,6 +175,29 @@ int main(int argc, char* argv[]) {
qApp->showPolls(); qApp->showPolls();
qApp->mainForm()->tabWidget()->feedMessageViewer()->feedsView()->loadAllExpandStates(); 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. // Enter global event loop.
return Application::exec(); return Application::exec();
} }

View File

@ -1490,6 +1490,7 @@ Assignment DatabaseQueries::getCategories(QSqlDatabase db, int account_id, bool*
return categories; return categories;
} }
#if defined(USE_WEBENGINE)
bool DatabaseQueries::deleteInoreaderAccount(QSqlDatabase db, int account_id) { bool DatabaseQueries::deleteInoreaderAccount(QSqlDatabase db, int account_id) {
QSqlQuery q(db); QSqlQuery q(db);
@ -1499,7 +1500,6 @@ bool DatabaseQueries::deleteInoreaderAccount(QSqlDatabase db, int account_id) {
return q.exec(); return q.exec();
} }
#if defined(USE_WEBENGINE)
Assignment DatabaseQueries::getInoreaderFeeds(QSqlDatabase db, int account_id, bool* ok) { Assignment DatabaseQueries::getInoreaderFeeds(QSqlDatabase db, int account_id, bool* ok) {
Assignment feeds; Assignment feeds;
QSqlQuery q(db); QSqlQuery q(db);