Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/pdf/xpdf/PSOutputDev.cc
diff options
context:
space:
mode:
authorMartin Kretzschmar <mkretzschmar@src.gnome.org>2002-09-18 18:58:15 (GMT)
committer Martin Kretzschmar <mkretzschmar@src.gnome.org>2002-09-18 18:58:15 (GMT)
commitd99fb4f4acd14fcdbda968abd907547dcc7af40c (patch)
treebbd52b808b583073e6d1d7c1043158fe8fd6fe4c /pdf/xpdf/PSOutputDev.cc
parent28626f3d3c9aacc49c6f79353e7fcb2e49360b02 (diff)
Completely synched with Xpdf 0.90
doc changes (version numbers), typo fixes
Diffstat (limited to 'pdf/xpdf/PSOutputDev.cc')
-rw-r--r--pdf/xpdf/PSOutputDev.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/pdf/xpdf/PSOutputDev.cc b/pdf/xpdf/PSOutputDev.cc
index fa7c13e..edff5cd 100644
--- a/pdf/xpdf/PSOutputDev.cc
+++ b/pdf/xpdf/PSOutputDev.cc
@@ -481,12 +481,12 @@ void PSOutputDev::setupFont(GfxFont *font) {
writePS("/F%d_%d /%s %g\n",
font->getID().num, font->getID().gen, psName, scale);
for (i = 0; i < 256; i += 8) {
- writePS((i == 0) ? (char *)"[ " : (char *)" ");
+ writePS((i == 0) ? "[ " : " ");
for (j = 0; j < 8; ++j) {
charName = font->getCharName(i+j);
- writePS("/%s", charName ? charName : (char *)".notdef");
+ writePS("/%s", charName ? charName : ".notdef");
}
- writePS((i == 256-8) ? (char *)"]\n" : (char *)"\n");
+ writePS((i == 256-8) ? "]\n" : "\n");
}
writePS("pdfMakeFont\n");
}