summaryrefslogtreecommitdiffstats
blob: db57b1f85aab011ffc8a8dfbca117b7219e82e95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*
 * Copyright (c) 2010 Kevin Smith
 * Licensed under the GNU General Public License v3.
 * See Documentation/Licenses/GPLv3.txt for more information.
 */

#include "SystemMessageSnippet.h"

#include <QDateTime>

namespace Swift {

SystemMessageSnippet::SystemMessageSnippet(const QString& message, const QDateTime& time, bool appendToPrevious, QtChatTheme* theme) : ChatSnippet(appendToPrevious) {
	content_ = theme->getStatus();

	content_.replace("%message%", escape(message));
	content_.replace("%shortTime%", escape(time.toString("h:mm")));
	content_.replace("%time%", escape(time.toString("h:mm")));
}

SystemMessageSnippet::~SystemMessageSnippet() {

}

}