aboutsummaryrefslogtreecommitdiff
path: root/include/chatlogpiece.h
diff options
context:
space:
mode:
authoroldmud0 <oldmud0@users.noreply.github.com>2020-08-21 12:42:45 -0500
committerGitHub <noreply@github.com>2020-08-21 12:42:45 -0500
commit2c6a690d47ca0c48bef84b3d28d58064365a9934 (patch)
treecdc2a42b51e4bbe3c008adab296ac306d6dbdfd7 /include/chatlogpiece.h
parentec1c95bdb33dd063880c4cb6c3c9c3cf5d0ed454 (diff)
parentaf1e76022568af1f146e2b49e96af85eb06521b9 (diff)
Merge pull request #246 from AttorneyOnline/2.8
Merges 2.8.5, which is a patch release for 2.8 with no substantially new features. This commit is release-ready.
Diffstat (limited to 'include/chatlogpiece.h')
-rw-r--r--include/chatlogpiece.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/chatlogpiece.h b/include/chatlogpiece.h
index 14d4b349..da78d0da 100644
--- a/include/chatlogpiece.h
+++ b/include/chatlogpiece.h
@@ -10,14 +10,14 @@ class chatlogpiece {
public:
chatlogpiece();
chatlogpiece(QString p_name, QString p_showname, QString p_message,
- bool p_song,int color);
+ QString p_action,int color);
chatlogpiece(QString p_name, QString p_showname, QString p_message,
- bool p_song, int color, QDateTime p_datetime);
+ QString p_action, int color, QDateTime p_datetime);
QString get_name();
QString get_showname();
QString get_message();
- bool is_song();
+ QString get_action();
QDateTime get_datetime();
QString get_datetime_as_string();
int get_chat_color();
@@ -27,9 +27,9 @@ private:
QString name;
QString showname;
QString message;
+ QString action;
QDateTime datetime;
int color;
- bool p_is_song;
};
#endif // CHATLOGPIECE_H