diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-10-18 11:53:05 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-10-18 11:53:05 +0300 |
commit | fa0cea880f5403c11f194d50a16f1e0ba50ac3b9 (patch) | |
tree | b6af265f3265c5e918ff79e154071bc606c5e11c /src | |
parent | f1a2bb26ee73327d0e29f5cd83861ce5e5cfc97e (diff) | |
download | plus-fa0cea880f5403c11f194d50a16f1e0ba50ac3b9.tar.gz plus-fa0cea880f5403c11f194d50a16f1e0ba50ac3b9.tar.bz2 plus-fa0cea880f5403c11f194d50a16f1e0ba50ac3b9.tar.xz plus-fa0cea880f5403c11f194d50a16f1e0ba50ac3b9.zip |
Fix compilation warning.
Diffstat (limited to 'src')
-rw-r--r-- | src/listeners/tooltiplistener.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/listeners/tooltiplistener.cpp b/src/listeners/tooltiplistener.cpp index 09e387271..139b9aa6b 100644 --- a/src/listeners/tooltiplistener.cpp +++ b/src/listeners/tooltiplistener.cpp @@ -53,7 +53,7 @@ void ToolTipListener::mouseMoved(MouseEvent &event) textPopup->show(x, y, mToolTip); } -void ToolTipListener::mouseExited(MouseEvent &event) +void ToolTipListener::mouseExited(MouseEvent &event A_UNUSED) { if (mToolTip.empty()) return; |