summaryrefslogtreecommitdiffstats
path: root/src/input/sayHelloHandler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/input/sayHelloHandler.cpp')
-rw-r--r--src/input/sayHelloHandler.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/input/sayHelloHandler.cpp b/src/input/sayHelloHandler.cpp
index fc6f668..301709f 100644
--- a/src/input/sayHelloHandler.cpp
+++ b/src/input/sayHelloHandler.cpp
@@ -19,7 +19,7 @@
using namespace std;
-void SayHelloHandler::handle(InputEvent const&, InputEventContext const* ctx)
+void SayHelloHandler::doHandle(InputEvent const&, InputEventContext const* ctx)
{
- cerr << "I'm right here! You sent this message from pid " << ctx->getSenderPid() << " as user " << ctx->getSenderUid() << " with gid " << ctx->getSenderGid() << endl;
+ cerr << "I'm right here! You sent this message from pid " << ctx->senderPid() << " as user " << ctx->senderUid() << " with gid " << ctx->senderGid() << endl;
}