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

Removed debug code accidentally included in last commit

This commit is contained in:
Kevin Flynn 2014-07-05 01:04:16 -07:00
parent e6b17b470c
commit d1a3a42d88

View File

@ -584,7 +584,6 @@ void Widget::copyFriendIdToClipboard(int friendId)
Friend* f = FriendList::findFriend(friendId);
if (f != nullptr)
{
qDebug() << f->userId;
QClipboard *clipboard = QApplication::clipboard();
clipboard->setText(f->userId, QClipboard::Clipboard);
}