1 files changed, 1 insertions, 10 deletions
diff --git a/src/timeline/TimelineModel.h b/src/timeline/TimelineModel.h
index 43ea0b24..54a1cb3f 100644
--- a/src/timeline/TimelineModel.h
+++ b/src/timeline/TimelineModel.h
@@ -363,16 +363,7 @@ public slots:
std::vector<QString> typingUsers() const { return typingUsers_; }
bool paginationInProgress() const { return m_paginationInProgress; }
QString reply() const { return reply_; }
- void setReply(const QString &newReply)
- {
- if (edit_.startsWith('m'))
- return;
-
- if (reply_ != newReply) {
- reply_ = newReply;
- emit replyChanged(reply_);
- }
- }
+ void setReply(const QString &newReply);
void resetReply()
{
if (!reply_.isEmpty()) {
|