diff options
author | Timothy Pearson <[email protected]> | 2012-01-25 16:19:45 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-01-25 16:19:45 -0600 |
commit | 37fb993b5bf233e38f304df8fb8ec88c7a2fdce8 (patch) | |
tree | d98a40c4c74a36cebfdd8092f60af4f941386a8c /src/kernel | |
parent | 663d27a3f780102518e9bdef0fbaf5e5d1b16d52 (diff) | |
download | tqt3-37fb993b5bf233e38f304df8fb8ec88c7a2fdce8.tar.gz tqt3-37fb993b5bf233e38f304df8fb8ec88c7a2fdce8.zip |
Fix linear alphabet string errors
Diffstat (limited to 'src/kernel')
-rw-r--r-- | src/kernel/qimage.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kernel/qimage.cpp b/src/kernel/qimage.cpp index 252e52404..edc77a851 100644 --- a/src/kernel/qimage.cpp +++ b/src/kernel/qimage.cpp @@ -5867,7 +5867,7 @@ static const char* xpm_color_name( int cpp, int index ) { static char returnable[5]; static const char code[] = ".#abcdefghijklmnopqrstuvwxyzABCD" - "EFGHIJKLMNOPTQRSTUVWXYZ0123456789"; + "EFGHIJKLMNOPQRSTUVWXYZ0123456789"; // cpp is limited to 4 and index is limited to 64^cpp if ( cpp > 1 ) { if ( cpp > 2 ) { |