Browse Source

fix(chatlog): silence warning about unused parameters

pull/3870/head
sudden6 9 years ago
parent
commit
8ff0d28abf
No known key found for this signature in database
GPG Key ID: 279509B499E032B9
  1. 2
      src/chatlog/content/text.cpp

2
src/chatlog/content/text.cpp

@ -150,6 +150,8 @@ QRectF Text::boundingRect() const @@ -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;

Loading…
Cancel
Save