summaryrefslogtreecommitdiffstats
path: root/src/input/inputEventHandler.h
diff options
context:
space:
mode:
authorSebastien Braun2010-10-10 01:40:33 +0200
committerSebastien Braun2010-10-10 14:05:36 +0200
commit18f16ac568d0c699fe24271c5b77f573b749092e (patch)
tree69dbf59df89ee394ccabaa8fe415eb6031e81379 /src/input/inputEventHandler.h
parentCode cleanup for inputEvent.h (diff)
downloadpvs-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.h6
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;
};