summaryrefslogtreecommitdiff
path: root/utils/pdftoppm.cc
diff options
context:
space:
mode:
authorOliver Sander <oliver.sander@tu-dresden.de>2018-11-09 18:42:04 +0100
committerAlbert Astals Cid <tsdgeos@yahoo.es>2018-11-11 22:07:02 +0000
commit817b0f12453985c416a0388cdd4a09697d092b7f (patch)
tree10c369ab08ee87097a9691daa0633cbc8a92a4da /utils/pdftoppm.cc
parentfb7f34b1f9706c4912384eabd5dbf44b6c88c71d (diff)
Rename GooString::getCString GooString::c_str
This is the name used by std::string.
Diffstat (limited to 'utils/pdftoppm.cc')
-rw-r--r--utils/pdftoppm.cc14
1 files changed, 7 insertions, 7 deletions
diff --git a/utils/pdftoppm.cc b/utils/pdftoppm.cc
index 7c85a241..7d72c8d2 100644
--- a/utils/pdftoppm.cc
+++ b/utils/pdftoppm.cc
@@ -218,7 +218,7 @@ static const ArgDesc argDesc[] = {
static bool parseJpegOptions()
{
//jpegOpt format is: <opt1>=<val1>,<opt2>=<val2>,...
- const char *nextOpt = jpegOpt.getCString();
+ const char *nextOpt = jpegOpt.c_str();
while (nextOpt && *nextOpt)
{
const char *comma = strchr(nextOpt, ',');
@@ -231,22 +231,22 @@ static bool parseJpegOptions()
nextOpt = nullptr;
}
//here opt is "<optN>=<valN> "
- const char *equal = strchr(opt.getCString(), '=');
+ const char *equal = strchr(opt.c_str(), '=');
if (!equal) {
- fprintf(stderr, "Unknown jpeg option \"%s\"\n", opt.getCString());
+ fprintf(stderr, "Unknown jpeg option \"%s\"\n", opt.c_str());
return false;
}
- int iequal = equal - opt.getCString();
+ int iequal = equal - opt.c_str();
GooString value(&opt, iequal + 1, opt.getLength() - iequal - 1);
opt.del(iequal, opt.getLength() - iequal);
//here opt is "<optN>" and value is "<valN>"
if (opt.cmp("quality") == 0) {
- if (!isInt(value.getCString())) {
+ if (!isInt(value.c_str())) {
fprintf(stderr, "Invalid jpeg quality\n");
return false;
}
- jpegQuality = atoi(value.getCString());
+ jpegQuality = atoi(value.c_str());
if (jpegQuality < 0 || jpegQuality > 100) {
fprintf(stderr, "jpeg quality must be between 0 and 100\n");
return false;
@@ -268,7 +268,7 @@ static bool parseJpegOptions()
return false;
}
} else {
- fprintf(stderr, "Unknown jpeg option \"%s\"\n", opt.getCString());
+ fprintf(stderr, "Unknown jpeg option \"%s\"\n", opt.c_str());
return false;
}
}