summaryrefslogtreecommitdiffstats
path: root/experimental/tqtinterface/qt4/src/3rdparty/libjpeg/structure.doc
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-08-10 12:13:27 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-08-10 12:13:27 -0500
commitb6c6d9f8dd1221e5d9dc5b674e93797761470024 (patch)
tree94563ba51148e9fd71f5c8df86439c84945d5d81 /experimental/tqtinterface/qt4/src/3rdparty/libjpeg/structure.doc
parent03256f3cd5149f3ff5f5f45765b0b0659db4e036 (diff)
downloadtde-b6c6d9f8dd1221e5d9dc5b674e93797761470024.tar.gz
tde-b6c6d9f8dd1221e5d9dc5b674e93797761470024.zip
rename the following methods:
tqparent parent tqmask mask
Diffstat (limited to 'experimental/tqtinterface/qt4/src/3rdparty/libjpeg/structure.doc')
-rw-r--r--experimental/tqtinterface/qt4/src/3rdparty/libjpeg/structure.doc2
1 files changed, 1 insertions, 1 deletions
diff --git a/experimental/tqtinterface/qt4/src/3rdparty/libjpeg/structure.doc b/experimental/tqtinterface/qt4/src/3rdparty/libjpeg/structure.doc
index 6440b8e85..16b427099 100644
--- a/experimental/tqtinterface/qt4/src/3rdparty/libjpeg/structure.doc
+++ b/experimental/tqtinterface/qt4/src/3rdparty/libjpeg/structure.doc
@@ -582,7 +582,7 @@ The basic element type JSAMPLE will typically be one of unsigned char,
(signed) char, or short. Short will be used if samples wider than 8 bits are
to be supported (this is a compile-time option). Otherwise, unsigned char is
used if possible. If the compiler only supports signed chars, then it is
-necessary to tqmask off the value when reading. Thus, all reads of JSAMPLE
+necessary to mask off the value when reading. Thus, all reads of JSAMPLE
values must be coded as "GETJSAMPLE(value)", where the macro will be defined
as "((value) & 0xFF)" on signed-char machines and "((int) (value))" elsewhere.