Skip to content

Commit

Permalink
Miscellaneous cleanups
Browse files Browse the repository at this point in the history
Remove meegotouchevents dependency, remove spurious error output.
  • Loading branch information
Chris Adams committed Jun 30, 2016
1 parent 36f4b8e commit a1b56b5
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
@@ -1,4 +1,4 @@
CONFIG += link_pkgconfig meegotouchevents-qt5
CONFIG += link_pkgconfig
PKGCONFIG += nemonotifications-qt5
SOURCES += $$PWD/facebooknotificationsyncadaptor.cpp
HEADERS += $$PWD/facebooknotificationsyncadaptor.h
Expand Down
2 changes: 1 addition & 1 deletion src/facebook/facebook-signon/facebooksignonsyncadaptor.cpp
Expand Up @@ -210,7 +210,7 @@ void FacebookSignonSyncAdaptor::lowerCredentialsNeedUpdateFlag(int accountId)
{
Accounts::Account *acc = loadAccount(accountId);
if (acc) {
SOCIALD_LOG_ERROR("FBSSA: lowering CredentialsNeedUpdate flag");
SOCIALD_LOG_INFO("FBSSA: lowering CredentialsNeedUpdate flag");
Accounts::Service srv = m_accountManager.service(syncServiceName());
acc->selectService(srv);
acc->setValue(QStringLiteral("CredentialsNeedUpdate"), QVariant::fromValue<bool>(false));
Expand Down
2 changes: 1 addition & 1 deletion src/google/google-signon/googlesignonsyncadaptor.cpp
Expand Up @@ -113,7 +113,7 @@ void GoogleSignonSyncAdaptor::lowerCredentialsNeedUpdateFlag(int accountId)
{
Accounts::Account *acc = loadAccount(accountId);
if (acc) {
SOCIALD_LOG_ERROR("GSSA: lowering CredentialsNeedUpdate flag");
SOCIALD_LOG_INFO("GSSA: lowering CredentialsNeedUpdate flag");
Accounts::Service srv = m_accountManager.service(syncServiceName());
acc->selectService(srv);
acc->setValue(QStringLiteral("CredentialsNeedUpdate"), QVariant::fromValue<bool>(false));
Expand Down
@@ -1,4 +1,4 @@
CONFIG += link_pkgconfig meegotouchevents-qt5
CONFIG += link_pkgconfig
PKGCONFIG += nemonotifications-qt5
SOURCES += $$PWD/twitternotificationsyncadaptor.cpp
HEADERS += $$PWD/twitternotificationsyncadaptor.h
Expand Down
2 changes: 1 addition & 1 deletion src/twitter/twitter-posts/twitter-posts.pri
@@ -1,4 +1,4 @@
CONFIG += link_pkgconfig meegotouchevents-qt5
CONFIG += link_pkgconfig
PKGCONFIG += nemonotifications-qt5
SOURCES += $$PWD/twitterhometimelinesyncadaptor.cpp
HEADERS += $$PWD/twitterhometimelinesyncadaptor.h
Expand Down
2 changes: 1 addition & 1 deletion src/vk/vk-notifications/vk-notifications.pri
@@ -1,4 +1,4 @@
CONFIG += link_pkgconfig meegotouchevents-qt5
CONFIG += link_pkgconfig
PKGCONFIG += nemonotifications-qt5
SOURCES += $$PWD/vknotificationsyncadaptor.cpp
HEADERS += $$PWD/vknotificationsyncadaptor.h
Expand Down

0 comments on commit a1b56b5

Please sign in to comment.