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/inputEventHandler.h | |
| 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/inputEventHandler.h')
| -rw-r--r-- | src/input/inputEventHandler.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/input/inputEventHandler.h b/src/input/inputEventHandler.h index 71a530b..735b75c 100644 --- a/src/input/inputEventHandler.h +++ b/src/input/inputEventHandler.h @@ -33,9 +33,9 @@ struct InputEventContext hasBeenDenied = false; } - virtual pid_t getSenderPid() const = 0; - virtual uid_t getSenderUid() const = 0; - virtual gid_t getSenderGid() const = 0; + virtual pid_t senderPid() const = 0; + virtual uid_t senderUid() const = 0; + virtual gid_t senderGid() const = 0; mutable bool hasBeenDenied; }; |
