summaryrefslogtreecommitdiffstats
path: root/kviewshell/plugins/djvu/libdjvu/JB2EncodeCodec.cpp
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2012-04-13 00:25:47 -0500
committerSlávek Banko <slavek.banko@axis.cz>2012-06-03 19:30:05 +0200
commite842e1de9df9b2d1ec2bea9c6a12f6371cd82ffa (patch)
tree33332ec7fb974491bc57aa4ed326407792a44f61 /kviewshell/plugins/djvu/libdjvu/JB2EncodeCodec.cpp
parentb93ebd692de461b59ce2db6181b08d736d37a423 (diff)
downloadtdegraphics-e842e1de9df9b2d1ec2bea9c6a12f6371cd82ffa.tar.gz
tdegraphics-e842e1de9df9b2d1ec2bea9c6a12f6371cd82ffa.zip
Fix inadvertent "TQ" changes.
(cherry picked from commit ca4b0c6d6aef469eede468b405ea89e119da3626)
Diffstat (limited to 'kviewshell/plugins/djvu/libdjvu/JB2EncodeCodec.cpp')
-rw-r--r--kviewshell/plugins/djvu/libdjvu/JB2EncodeCodec.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/kviewshell/plugins/djvu/libdjvu/JB2EncodeCodec.cpp b/kviewshell/plugins/djvu/libdjvu/JB2EncodeCodec.cpp
index 054d4e09..5a8092a0 100644
--- a/kviewshell/plugins/djvu/libdjvu/JB2EncodeCodec.cpp
+++ b/kviewshell/plugins/djvu/libdjvu/JB2EncodeCodec.cpp
@@ -166,7 +166,7 @@ JB2Image::encode(const GP<ByteStream> &gbs) const
#define MATCHED_REFINE_IMAGE_ONLY (6)
#define MATCHED_COPY (7)
#define NON_MARK_DATA (8)
-#define RETQUIRED_DICT_OR_RESET (9)
+#define REQUIRED_DICT_OR_RESET (9)
#define PRESERVED_COMMENT (10)
#define END_OF_DATA (11)
@@ -364,7 +364,7 @@ JB2Dict::JB2Codec::Encode::code(const GP<JB2Dict> &gjim)
int nshape = jim.get_shape_count();
init_library(jim);
// Code headers.
- int rectype = RETQUIRED_DICT_OR_RESET;
+ int rectype = REQUIRED_DICT_OR_RESET;
if (jim.get_inherited_shape_count() > 0)
code_record(rectype, gjim, 0);
rectype = START_OF_DATA;
@@ -388,7 +388,7 @@ JB2Dict::JB2Codec::Encode::code(const GP<JB2Dict> &gjim)
// Check numcoder status
if (cur_ncell > CELLCHUNK)
{
- rectype = RETQUIRED_DICT_OR_RESET;
+ rectype = REQUIRED_DICT_OR_RESET;
code_record(rectype, 0, 0);
}
}
@@ -440,7 +440,7 @@ JB2Dict::JB2Codec::Encode::code(const GP<JB2Image> &gjim)
}
}
// Code headers.
- int rectype = RETQUIRED_DICT_OR_RESET;
+ int rectype = REQUIRED_DICT_OR_RESET;
if (jim.get_inherited_shape_count() > 0)
code_record(rectype, gjim, 0, 0);
rectype = START_OF_DATA;
@@ -507,7 +507,7 @@ JB2Dict::JB2Codec::Encode::code(const GP<JB2Image> &gjim)
// Check numcoder status
if (cur_ncell > CELLCHUNK)
{
- rectype = RETQUIRED_DICT_OR_RESET;
+ rectype = REQUIRED_DICT_OR_RESET;
code_record(rectype, 0, 0);
}
}
@@ -546,7 +546,7 @@ JB2Dict::JB2Codec::Encode::encode_libonly_shape(
// Check numcoder status
if (cur_ncell > CELLCHUNK)
{
- rectype = RETQUIRED_DICT_OR_RESET;
+ rectype = REQUIRED_DICT_OR_RESET;
code_record(rectype, 0, 0);
}
}