From 4f7cc79b4cecf63a7a69598eb81e86e18b4a7be2 Mon Sep 17 00:00:00 2001 From: John Preston Date: Tue, 24 Mar 2015 13:21:30 +0300 Subject: [PATCH] warning fixed --- Telegram/SourceFiles/mainwidget.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Telegram/SourceFiles/mainwidget.h b/Telegram/SourceFiles/mainwidget.h index 7e0259474..bfc8c3ed1 100644 --- a/Telegram/SourceFiles/mainwidget.h +++ b/Telegram/SourceFiles/mainwidget.h @@ -110,7 +110,7 @@ public: class StackItemHistory : public StackItem { public: - StackItemHistory(PeerData *peer, int32 lastWidth, int32 lastScrollTop, QList replyReturns) : StackItem(peer), lastWidth(lastWidth), lastScrollTop(lastScrollTop), replyReturns(replyReturns) { + StackItemHistory(PeerData *peer, int32 lastWidth, int32 lastScrollTop, QList replyReturns) : StackItem(peer), replyReturns(replyReturns), lastWidth(lastWidth), lastScrollTop(lastScrollTop) { } StackItemType type() const { return HistoryStackItem;