diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-07-13 12:49:11 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-07-13 12:49:11 +0300 |
commit | c4cef10f92a8ff3fc668e0644d38744dccd06392 (patch) | |
tree | 048f4ac482571c5a424819d3e4507f67d21b8409 /src/gui/widgets/passwordfield.h | |
parent | f0b7627b7d88c1d5bb484961377114b210c8dd53 (diff) | |
download | plus-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.h | 2 |
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 |