summaryrefslogtreecommitdiff
path: root/src/preview/Comment.h
diff options
context:
space:
mode:
authorSimon Robertshaw <simon@hardwired.org.uk>2012-05-31 09:24:44 (GMT)
committer Simon Robertshaw <simon@hardwired.org.uk>2012-05-31 09:24:44 (GMT)
commite0c9dab8cb981172c5de81f5963e28db67f1b295 (patch)
treedd78e82f54a7ed87915a7d5100437cd42ac0c415 /src/preview/Comment.h
parent708d52bcc5f0e13fa6540751e2402ccfdf02bec7 (diff)
downloadpowder-e0c9dab8cb981172c5de81f5963e28db67f1b295.zip
powder-e0c9dab8cb981172c5de81f5963e28db67f1b295.tar.gz
Move more SDL dependancies out of program, OpenGLCanvas for JNI and JNI methods.
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)
{
}