From bb03a402d7a6a1a93d3c6b809126dcc37c95fbb3 Mon Sep 17 00:00:00 2001 From: Konstantinos Sideris Date: Thu, 13 Apr 2017 04:32:18 +0300 Subject: Add proper struct initialization --- include/HistoryView.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'include/HistoryView.h') diff --git a/include/HistoryView.h b/include/HistoryView.h index ba267ad4..09f8bdce 100644 --- a/include/HistoryView.h +++ b/include/HistoryView.h @@ -34,6 +34,14 @@ struct PendingMessage { QString body; QString event_id; HistoryViewItem *widget; + + PendingMessage(int txn_id, QString body, QString event_id, HistoryViewItem *widget) + : txn_id(txn_id) + , body(body) + , event_id(event_id) + , widget(widget) + { + } }; class HistoryView : public QWidget -- cgit 1.5.1