summaryrefslogtreecommitdiff
path: root/src/gui/widgets/passwordfield.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-07-13 12:49:11 +0300
committerAndrei Karas <akaras@inbox.ru>2014-07-13 12:49:11 +0300
commitc4cef10f92a8ff3fc668e0644d38744dccd06392 (patch)
tree048f4ac482571c5a424819d3e4507f67d21b8409 /src/gui/widgets/passwordfield.h
parentf0b7627b7d88c1d5bb484961377114b210c8dd53 (diff)
downloadplus-c4cef10f92a8ff3fc668e0644d38744dccd06392.tar.gz
plus-c4cef10f92a8ff3fc668e0644d38744dccd06392.tar.bz2
plus-c4cef10f92a8ff3fc668e0644d38744dccd06392.tar.xz
plus-c4cef10f92a8ff3fc668e0644d38744dccd06392.zip
Fix signed/unsigned type for some vars.
Diffstat (limited to 'src/gui/widgets/passwordfield.h')
-rw-r--r--src/gui/widgets/passwordfield.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/widgets/passwordfield.h b/src/gui/widgets/passwordfield.h
index 4c05afd40..f9f677d0d 100644
--- a/src/gui/widgets/passwordfield.h
+++ b/src/gui/widgets/passwordfield.h
@@ -47,7 +47,7 @@ class PasswordField final : public TextField
void draw(Graphics *graphics) override final;
protected:
- char mPasswordChar;
+ unsigned char mPasswordChar;
};
#endif // GUI_WIDGETS_PASSWORDFIELD_H