diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-03-19 00:23:53 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-03-19 00:23:53 +0300 |
commit | 15c16a944c5724080365800645e5f564887b942f (patch) | |
tree | 3f773e2685792a1b6816912a7f6cda1722bb07ac /src/gui/widgets | |
parent | 1d289beae487379d47e05209d1bb1b07649dac45 (diff) | |
download | plus-15c16a944c5724080365800645e5f564887b942f.tar.gz plus-15c16a944c5724080365800645e5f564887b942f.tar.bz2 plus-15c16a944c5724080365800645e5f564887b942f.tar.xz plus-15c16a944c5724080365800645e5f564887b942f.zip |
fix compilation warning.
Diffstat (limited to 'src/gui/widgets')
-rw-r--r-- | src/gui/widgets/browserbox.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/widgets/browserbox.cpp b/src/gui/widgets/browserbox.cpp index c344d8d41..4d4a51ca4 100644 --- a/src/gui/widgets/browserbox.cpp +++ b/src/gui/widgets/browserbox.cpp @@ -445,7 +445,7 @@ void BrowserBox::mouseMoved(MouseEvent &event) ? static_cast<int>(i - mLinks.begin()) : -1; } -void BrowserBox::mouseExited(MouseEvent &event) +void BrowserBox::mouseExited(MouseEvent &event A_UNUSED) { mSelectedLink = -1; } |