diff options
author | Slávek Banko <[email protected]> | 2025-03-20 14:17:46 +0100 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2025-03-20 14:17:46 +0100 |
commit | c68a6387ddf2588e37908fdde67b8851d053a988 (patch) | |
tree | 4bf847b5ac008f2f1e39137cd2bda3fc3428de96 | |
parent | 3eed64757e2955ee7d0fad90c5d6acda93bf0d80 (diff) | |
download | tqt3-c68a6387ddf2588e37908fdde67b8851d053a988.tar.gz tqt3-c68a6387ddf2588e37908fdde67b8851d053a988.zip |
Fix a typo and thus FTBFS from the recent commit.
Signed-off-by: Slávek Banko <[email protected]>
-rw-r--r-- | src/tools/tqchar.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/tqchar.h b/src/tools/tqchar.h index 7f98e155c..3382cea35 100644 --- a/src/tools/tqchar.h +++ b/src/tools/tqchar.h @@ -262,7 +262,7 @@ inline TQChar::TQChar( short rc ) : ucs( (ushort) rc ) { } -inline TQChar::TQChar( uint rc ) : ucs( (ushort) ( rc ) +inline TQChar::TQChar( uint rc ) : ucs( (ushort) ( rc ) ) { } |