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

fix(chatlog): silence warning about unused parameters

This commit is contained in:
sudden6 2016-11-11 00:12:07 +01:00
parent 28c29157f8
commit 8ff0d28abf
No known key found for this signature in database
GPG Key ID: 279509B499E032B9

View File

@ -150,6 +150,8 @@ QRectF Text::boundingRect() const
void Text::paint(QPainter* painter, const QStyleOptionGraphicsItem* option, QWidget* widget)
{
Q_UNUSED(option);
Q_UNUSED(widget);
if (!doc)
return;