aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/qpdf-c.cc
diff options
context:
space:
mode:
authorm-holger <m-holger@kubitscheck.org>2023-05-27 19:19:52 +0200
committerm-holger <m-holger@kubitscheck.org>2023-06-02 17:00:40 +0200
commit3c5700c255f4603b5df9c6d183d13dd71a083cc3 (patch)
tree0f01c62c54b56d009b341922fa3441907a2e560b /libqpdf/qpdf-c.cc
parent6e6a73d28f5f61f038209a61a3e85995dc71aa32 (diff)
downloadqpdf-3c5700c255f4603b5df9c6d183d13dd71a083cc3.tar.zst
Code tidy - reflow comments and strings
Diffstat (limited to 'libqpdf/qpdf-c.cc')
-rw-r--r--libqpdf/qpdf-c.cc15
1 files changed, 6 insertions, 9 deletions
diff --git a/libqpdf/qpdf-c.cc b/libqpdf/qpdf-c.cc
index 05568558..fe2a608e 100644
--- a/libqpdf/qpdf-c.cc
+++ b/libqpdf/qpdf-c.cc
@@ -269,9 +269,8 @@ qpdf_read(qpdf_data qpdf, char const* filename, char const* password)
qpdf->filename = filename;
qpdf->password = password;
status = trap_errors(qpdf, &call_read);
- // We no longer have a good way to exercise a file with both
- // warnings and errors because qpdf is getting much better at
- // recovering.
+ // We no longer have a good way to exercise a file with both warnings and errors because qpdf is
+ // getting much better at recovering.
QTC::TC(
"qpdf",
"qpdf-c called qpdf_read",
@@ -806,9 +805,8 @@ template <class RET>
static RET
trap_oh_errors(qpdf_data qpdf, std::function<RET()> fallback, std::function<RET(qpdf_data)> fn)
{
- // Note: fallback is a function so we don't have to evaluate it
- // unless needed. This is important because sometimes the fallback
- // creates an object.
+ // Note: fallback is a function so we don't have to evaluate it unless needed. This is important
+ // because sometimes the fallback creates an object.
RET ret;
QPDF_ERROR_CODE status = trap_errors(qpdf, [&ret, fn](qpdf_data q) { ret = fn(q); });
if (status & QPDF_ERRORS) {
@@ -820,9 +818,8 @@ trap_oh_errors(qpdf_data qpdf, std::function<RET()> fallback, std::function<RET(
qpdf->qpdf->getFilename(),
"",
0,
- "C API function caught an exception that it isn't"
- " returning; please point the application developer"
- " to ERROR HANDLING in qpdf-c.h"));
+ "C API function caught an exception that it isn't returning; please point the "
+ "application developer to ERROR HANDLING in qpdf-c.h"));
qpdf->oh_error_occurred = true;
}
*QPDFLogger::defaultLogger()->getError() << qpdf->error->what() << "\n";