summaryrefslogtreecommitdiff
path: root/src/preview/Comment.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/preview/Comment.h')
-rw-r--r--src/preview/Comment.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/preview/Comment.h b/src/preview/Comment.h
index a53f6cd..c9a807c 100644
--- a/src/preview/Comment.h
+++ b/src/preview/Comment.h
@@ -8,13 +8,13 @@
#ifndef COMMENT_H_
#define COMMENT_H_
-class Comment
+class SaveComment
{
public:
int authorID;
std::string authorName;
std::string comment;
- Comment(int userID, std::string username, std::string commentText):
+ SaveComment(int userID, std::string username, std::string commentText):
authorID(userID), authorName(username), comment(commentText)
{
}