mirror of
https://github.com/The-Powder-Toy/The-Powder-Toy.git
synced 2025-04-04 22:42:28 +02:00
Adding a comment updates the comment total / number of pages
This commit is contained in:
parent
b184c78cff
commit
55d20f1bb2
@ -86,6 +86,7 @@ bool PreviewController::SubmitComment(std::string comment)
|
||||
}
|
||||
else
|
||||
{
|
||||
previewModel->CommentAdded();
|
||||
previewModel->UpdateComments(1);
|
||||
}
|
||||
}
|
||||
|
@ -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<SaveComment*>*)object;
|
||||
commentsLoaded = true;
|
||||
notifySaveCommentsChanged();
|
||||
notifyCommentsPageChanged();
|
||||
}
|
||||
|
||||
if (identifier == 1 || identifier == 2)
|
||||
|
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user