1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

Merge branch 'pr1232'

This commit is contained in:
tux3 2015-02-22 11:54:10 +01:00
commit 5e27d64a95
No known key found for this signature in database
GPG Key ID: 7E086DD661263264
3 changed files with 0 additions and 10 deletions

View File

@ -901,11 +901,6 @@ QString ChatForm::secondsToDHMS(quint32 duration)
return cD + res.sprintf("%dd%02dh %02dm %02ds", days, hours, minutes, seconds);
}
bool ChatForm::getIsTyping()
{
return isTyping;
}
void ChatForm::setFriendTyping(bool isTyping)
{
chatWidget->setTypingNotificationVisible(isTyping);

View File

@ -44,7 +44,6 @@ public:
void loadHistory(QDateTime since, bool processUndelivered = false);
void dischargeReceipt(int receipt);
bool getIsTyping();
void setFriendTyping(bool isTyping);
OfflineMsgEngine* getOfflineMsgEngine();

View File

@ -694,10 +694,6 @@ void Widget::onFriendStatusChanged(int friendId, Status status)
if (isActualChange && status != Status::Offline)
{ // wait a little
QTimer::singleShot(250, f->getChatForm()->getOfflineMsgEngine(), SLOT(deliverOfflineMsgs()));
// Send another typing notification if the contact comes back online
if (f->getChatForm()->getIsTyping() && Settings::getInstance().isTypingNotificationEnabled())
Core::getInstance()->sendTyping(f->getFriendID(), true);
}
}