From 145a52eb79fed146731f85c23b60f0609e40e785 Mon Sep 17 00:00:00 2001 From: Janne Mareike Koschinski Date: Thu, 2 Jul 2020 22:01:26 +0200 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Shane Synan --- src/common/quassel.h | 2 +- src/core/core.h | 1 + src/core/storage.h | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/common/quassel.h b/src/common/quassel.h index 45346292..bbacce79 100644 --- a/src/common/quassel.h +++ b/src/common/quassel.h @@ -142,7 +142,7 @@ public: EcdsaCertfpKeys, ///< ECDSA keys for CertFP in identities LongMessageId, ///< 64-bit IDs for messages SyncedCoreInfo, ///< CoreInfo dynamically updated using signals - LoadBacklogForwards, ///< Allow loading backlog in reverse + LoadBacklogForwards, ///< Allow loading backlog in ascending order, old to new }; Q_ENUMS(Feature) diff --git a/src/core/core.h b/src/core/core.h index f55553c1..e6ee9d89 100644 --- a/src/core/core.h +++ b/src/core/core.h @@ -430,6 +430,7 @@ public: * \param last if != -1 return only messages with a MsgId < last * \param limit if != -1 limit the returned list to a max of \limit entries * \param type The Message::Types that should be returned + * \param flags The Message::Flags that should be returned * \return The requested list of messages */ static inline std::vector requestMsgsForward(UserId user, diff --git a/src/core/storage.h b/src/core/storage.h index 2e2cac49..00a3b0be 100644 --- a/src/core/storage.h +++ b/src/core/storage.h @@ -533,6 +533,7 @@ public: * \param last if != -1 return only messages with a MsgId < last * \param limit if != -1 limit the returned list to a max of \limit entries * \param type The Message::Types that should be returned + * \param flags The Message::Flags that should be returned * \return The requested list of messages */ virtual std::vector requestMsgsForward(UserId user, -- 2.20.1