summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/games/backgammon/backgammonview.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/noncore/games/backgammon/backgammonview.cpp b/noncore/games/backgammon/backgammonview.cpp
index 6ee8f10..d9e8e6f 100644
--- a/noncore/games/backgammon/backgammonview.cpp
+++ b/noncore/games/backgammon/backgammonview.cpp
@@ -12,12 +12,13 @@ BackGammonView::~BackGammonView()
12{ 12{
13 //do nothing 13 //do nothing
14} 14}
15 15
16 16
17 17
18void BackGammonView::contentsMousePressEvent(QMouseEvent* e) 18void BackGammonView::contentsMousePressEvent(QMouseEvent* e)
19{ 19{
20 int x=e->x(); 20 int x=e->x();
21 int y=e->y(); 21 int y=e->y();
22 emit mouse(x,y); 22 emit mouse(x,y);
23} 23}
24