diff options
| author | Sebastien Braun | 2010-10-10 01:40:33 +0200 |
|---|---|---|
| committer | Sebastien Braun | 2010-10-10 14:05:36 +0200 |
| commit | 18f16ac568d0c699fe24271c5b77f573b749092e (patch) | |
| tree | 69dbf59df89ee394ccabaa8fe415eb6031e81379 /src/input/sayHelloHandler.cpp | |
| parent | Code cleanup for inputEvent.h (diff) | |
| download | pvs-18f16ac568d0c699fe24271c5b77f573b749092e.tar.gz pvs-18f16ac568d0c699fe24271c5b77f573b749092e.tar.xz pvs-18f16ac568d0c699fe24271c5b77f573b749092e.zip | |
Lose the `get' method prefix on InputEventContext since it does not fit in
Diffstat (limited to 'src/input/sayHelloHandler.cpp')
| -rw-r--r-- | src/input/sayHelloHandler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input/sayHelloHandler.cpp b/src/input/sayHelloHandler.cpp index 712963d..301709f 100644 --- a/src/input/sayHelloHandler.cpp +++ b/src/input/sayHelloHandler.cpp @@ -21,5 +21,5 @@ using namespace std; 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; } |
