Apply suggestions from code review
authorJanne Mareike Koschinski <janne@kuschku.de>
Thu, 2 Jul 2020 20:01:26 +0000 (22:01 +0200)
committerManuel Nickschas <sputnick@quassel-irc.org>
Sun, 4 Oct 2020 15:01:02 +0000 (17:01 +0200)
Co-authored-by: Shane Synan <digitalcircuit36939@gmail.com>
src/common/quassel.h
src/core/core.h
src/core/storage.h

index 4534629..bbacce7 100644 (file)
@@ -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)
 
index f55553c..e6ee9d8 100644 (file)
@@ -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<Message> requestMsgsForward(UserId user,
index 2e2cac4..00a3b0b 100644 (file)
@@ -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<Message> requestMsgsForward(UserId user,