Skip to content
This repository has been archived by the owner on Feb 12, 2023. It is now read-only.

Commit

Permalink
fix(chatlog): silence warning about unused parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
sudden6 committed Nov 10, 2016
1 parent 28c2915 commit 8ff0d28
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/chatlog/content/text.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 8ff0d28

Please sign in to comment.