summaryrefslogtreecommitdiff
path: root/src/guichan/widgets/tab.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2011-05-30 22:03:32 +0300
committerAndrei Karas <akaras@inbox.ru>2011-05-30 22:03:32 +0300
commit1d0044cbc81e547ad688a295288910d58e1a3fb1 (patch)
tree0a4575b8ff5f76b571891ea0f30df02fe61f4f29 /src/guichan/widgets/tab.cpp
parentb82ee801506790283d2f03060949bb5089086de8 (diff)
downloadplus-1d0044cbc81e547ad688a295288910d58e1a3fb1.tar.gz
plus-1d0044cbc81e547ad688a295288910d58e1a3fb1.tar.bz2
plus-1d0044cbc81e547ad688a295288910d58e1a3fb1.tar.xz
plus-1d0044cbc81e547ad688a295288910d58e1a3fb1.zip
Fix compilation warnings after guichan integration.
Remove temp file.
Diffstat (limited to 'src/guichan/widgets/tab.cpp')
-rw-r--r--src/guichan/widgets/tab.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/guichan/widgets/tab.cpp b/src/guichan/widgets/tab.cpp
index 8ba122b26..f6283dfe6 100644
--- a/src/guichan/widgets/tab.cpp
+++ b/src/guichan/widgets/tab.cpp
@@ -168,12 +168,12 @@ namespace gcn
graphics->popClipArea();
}
- void Tab::mouseEntered(MouseEvent& mouseEvent)
+ void Tab::mouseEntered(MouseEvent& mouseEvent _UNUSED_)
{
mHasMouse = true;
}
- void Tab::mouseExited(MouseEvent& mouseEvent)
+ void Tab::mouseExited(MouseEvent& mouseEvent _UNUSED_)
{
mHasMouse = false;
}