diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2016-03-09 20:22:10 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2016-03-09 21:50:27 -0800 |
commit | b973d988dc4d34daea94d7a0a14b31f8d68ee6e8 (patch) | |
tree | 8fbae5a6963596f1b80ff5c18741eb8ad89e6e4a /desktop-widgets/starwidget.cpp | |
parent | a670181ed22b7fc5c5d132842949002063c32ca7 (diff) | |
download | subsurface-b973d988dc4d34daea94d7a0a14b31f8d68ee6e8.tar.gz |
Silence warnings in starwidget.cpp
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'desktop-widgets/starwidget.cpp')
-rw-r--r-- | desktop-widgets/starwidget.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/desktop-widgets/starwidget.cpp b/desktop-widgets/starwidget.cpp index d959ed3b9..a810883c2 100644 --- a/desktop-widgets/starwidget.cpp +++ b/desktop-widgets/starwidget.cpp @@ -62,6 +62,7 @@ void StarWidget::mouseReleaseEvent(QMouseEvent *event) void StarWidget::paintEvent(QPaintEvent *event) { + Q_UNUSED(event) QPainter p(this); QImage star = hasFocus() ? focusedImage(starActive()) : starActive(); QPixmap selected = QPixmap::fromImage(star); |