summaryrefslogtreecommitdiff
path: root/otk/eventhandler.cc
diff options
context:
space:
mode:
Diffstat (limited to 'otk/eventhandler.cc')
-rw-r--r--otk/eventhandler.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/otk/eventhandler.cc b/otk/eventhandler.cc
index cab95e17..9d37bcff 100644
--- a/otk/eventhandler.cc
+++ b/otk/eventhandler.cc
@@ -13,7 +13,7 @@ OtkEventHandler::~OtkEventHandler()
}
-int OtkEventHandler::handle(const XEvent &e)
+void OtkEventHandler::handle(const XEvent &e)
{
switch(e.type){
case KeyPress:
@@ -79,7 +79,6 @@ int OtkEventHandler::handle(const XEvent &e)
case SelectionRequest:
return selectionRequestHandler(e.xselectionrequest);
};
- return 0;
}
}