summaryrefslogtreecommitdiff
path: root/src/input/key.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/input/key.cpp')
-rw-r--r--src/input/key.cpp11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/input/key.cpp b/src/input/key.cpp
index 97019e67e..13646dc8e 100644
--- a/src/input/key.cpp
+++ b/src/input/key.cpp
@@ -88,10 +88,11 @@ bool Key::isNumber() const
bool Key::isLetter() const
{
- return (((mValue >= 65 && mValue <= 90)
- || (mValue >= 97 && mValue <= 122)
- || (mValue >= 192 && mValue <= 255))
- && (mValue != 215) && (mValue != 247));
+ return ((mValue >= 65 && mValue <= 90) ||
+ (mValue >= 97 && mValue <= 122) ||
+ (mValue >= 192 && mValue <= 255)) &&
+ mValue != 215 &&
+ mValue != 247;
}
int Key::getValue() const
@@ -106,5 +107,5 @@ bool Key::operator==(const Key& key) const
bool Key::operator!=(const Key& key) const
{
- return (mValue != key.mValue);
+ return mValue != key.mValue;
}