QPDFJob: rename function that returns job schema

This commit is contained in:
Jay Berkenbilt 2022-01-31 07:32:19 -05:00
parent 9e3b321b24
commit f99e0af49c
4 changed files with 4 additions and 4 deletions

View File

@ -376,7 +376,7 @@ class QPDFJob
// Provide a string that is the help information for the version 1
// of JSON format for QPDFJob.
QPDF_DLL
static std::string json_job_schema_v1();
static std::string job_json_schema_v1();
private:
struct RotationSpec

View File

@ -482,7 +482,7 @@ QPDFJob::config()
}
std::string
QPDFJob::json_job_schema_v1()
QPDFJob::job_json_schema_v1()
{
return JOB_SCHEMA_DATA;
}

View File

@ -465,7 +465,7 @@ ArgParser::argEndCopyAttachment()
void
ArgParser::argJobJsonHelp()
{
std::cout << QPDFJob::json_job_schema_v1() << std::endl;
std::cout << QPDFJob::job_json_schema_v1() << std::endl;
}
void

View File

@ -8,7 +8,7 @@
#include <sstream>
#include <cstring>
static JSON JOB_SCHEMA = JSON::parse(QPDFJob::json_job_schema_v1().c_str());
static JSON JOB_SCHEMA = JSON::parse(QPDFJob::job_json_schema_v1().c_str());
namespace
{