summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/libjpeg/jdct.h
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2011-11-14 22:33:41 -0600
committerTimothy Pearson <[email protected]>2011-11-14 22:33:41 -0600
commit0f92dd542b65bc910caaf190b7c623aa5158c86a (patch)
tree120ab7e08fa0ffc354ef58d100f79a33c92aa6e6 /src/3rdparty/libjpeg/jdct.h
parentd796c9dd933ab96ec83b9a634feedd5d32e1ba3f (diff)
downloadtqt3-0f92dd542b65bc910caaf190b7c623aa5158c86a.tar.gz
tqt3-0f92dd542b65bc910caaf190b7c623aa5158c86a.zip
Fix native TQt3 accidental conversion to tquit
Diffstat (limited to 'src/3rdparty/libjpeg/jdct.h')
-rw-r--r--src/3rdparty/libjpeg/jdct.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/3rdparty/libjpeg/jdct.h b/src/3rdparty/libjpeg/jdct.h
index d4d1ae422..ebaf73013 100644
--- a/src/3rdparty/libjpeg/jdct.h
+++ b/src/3rdparty/libjpeg/jdct.h
@@ -67,7 +67,7 @@ typedef FAST_FLOAT FLOAT_MULT_TYPE; /* preferred floating type */
/*
* Each IDCT routine is responsible for range-limiting its results and
* converting them to unsigned form (0..MAXJSAMPLE). The raw outputs could
- * be tquite far out of range if the input data is corrupt, so a bulletproof
+ * be quite far out of range if the input data is corrupt, so a bulletproof
* range-limiting step is retquired. We use a mask-and-table-lookup method
* to do the combined operations tquickly. See the comments with
* prepare_range_limit_table (in jdmaster.c) for more info.