From 55d20f1bb2020ff6b3125f6ceead8d7dc37d050b Mon Sep 17 00:00:00 2001 From: jacob1 Date: Thu, 1 Oct 2015 22:26:23 -0400 Subject: [PATCH] Adding a comment updates the comment total / number of pages --- src/gui/preview/PreviewController.cpp | 1 + src/gui/preview/PreviewModel.cpp | 8 ++++++++ src/gui/preview/PreviewModel.h | 1 + 3 files changed, 10 insertions(+) diff --git a/src/gui/preview/PreviewController.cpp b/src/gui/preview/PreviewController.cpp index 413df4dc1..ceccfcc93 100644 --- a/src/gui/preview/PreviewController.cpp +++ b/src/gui/preview/PreviewController.cpp @@ -86,6 +86,7 @@ bool PreviewController::SubmitComment(std::string comment) } else { + previewModel->CommentAdded(); previewModel->UpdateComments(1); } } diff --git a/src/gui/preview/PreviewModel.cpp b/src/gui/preview/PreviewModel.cpp index 892358456..9133fd154 100644 --- a/src/gui/preview/PreviewModel.cpp +++ b/src/gui/preview/PreviewModel.cpp @@ -141,6 +141,13 @@ void PreviewModel::UpdateComments(int pageNumber) } } +void PreviewModel::CommentAdded() +{ + if (save) + save->Comments++; + commentsTotal++; +} + void PreviewModel::OnResponseReady(void * object, int identifier) { if (identifier == 1) @@ -166,6 +173,7 @@ void PreviewModel::OnResponseReady(void * object, int identifier) saveComments = (std::vector*)object; commentsLoaded = true; notifySaveCommentsChanged(); + notifyCommentsPageChanged(); } if (identifier == 1 || identifier == 2) diff --git a/src/gui/preview/PreviewModel.h b/src/gui/preview/PreviewModel.h index 5e8afe41b..f2de66ed6 100644 --- a/src/gui/preview/PreviewModel.h +++ b/src/gui/preview/PreviewModel.h @@ -48,6 +48,7 @@ public: int GetCommentsPageNum(); int GetCommentsPageCount(); void UpdateComments(int pageNumber); + void CommentAdded(); void AddObserver(PreviewView * observer); void UpdateSave(int saveID, int saveDate);