Save work.

This commit is contained in:
Martin Rotter 2017-09-23 20:44:01 +02:00
parent 9e4a0e7021
commit fccf555d2e
2 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@ class RecycleBin;
class QAction;
class MessagesModel;
// Car here represents ID of the item.
// Car here represents ID (int, primary key) of the item.
typedef QList<QPair<int, RootItem*>> Assignment;
typedef QPair<int, RootItem*> AssignmentItem;
typedef QPair<Message, RootItem::Importance> ImportanceChange;

View File

@ -35,7 +35,7 @@ OwnCloudFeed::OwnCloudFeed(const QSqlRecord& record) : Feed(nullptr) {
setIcon(qApp->icons()->fromByteArray(record.value(FDS_DB_ICON_INDEX).toByteArray()));
setAutoUpdateType(static_cast<Feed::AutoUpdateType>(record.value(FDS_DB_UPDATE_TYPE_INDEX).toInt()));
setAutoUpdateInitialInterval(record.value(FDS_DB_UPDATE_INTERVAL_INDEX).toInt());
qDebug("Custom ID of Nextcloud feed when loading from DB is '%s'.", qPrintable(record.value(FDS_DB_CUSTOM_ID_INDEX).toString()));
qDebug("Custom ID of Nextcloud feed when loading from DB is '%s'.", qPrintable(customId()));
}
OwnCloudFeed::~OwnCloudFeed() {}