2
0
mirror of https://github.com/kotatogram/kotatogram-desktop synced 2025-08-31 06:35:14 +00:00

metalang tags gen fixed, links parsing in rich text fixed, custom keyboard hiding saved in history

This commit is contained in:
John Preston
2015-11-23 18:34:38 +03:00
parent d6bcab07ef
commit 46df0f32c8
9 changed files with 161 additions and 98 deletions

View File

@@ -126,15 +126,14 @@ public:
class StackItemHistory : public StackItem {
public:
StackItemHistory(PeerData *peer, MsgId msgId, QList<MsgId> replyReturns, bool kbWasHidden) : StackItem(peer),
msgId(msgId), replyReturns(replyReturns), kbWasHidden(kbWasHidden) {
StackItemHistory(PeerData *peer, MsgId msgId, QList<MsgId> replyReturns) : StackItem(peer),
msgId(msgId), replyReturns(replyReturns) {
}
StackItemType type() const {
return HistoryStackItem;
}
MsgId msgId;
QList<MsgId> replyReturns;
bool kbWasHidden;
};
class StackItemProfile : public StackItem {