diff options
author | Fabio D'Urso <fabiodurso@hotmail.it> | 2013-12-18 21:46:12 +0100 |
---|---|---|
committer | Albert Astals Cid <aacid@kde.org> | 2013-12-18 21:47:10 +0100 |
commit | b02f873174865837fed3a9544b70b8b21747a3dd (patch) | |
tree | 0ec891af6f8f89df81f7d4248fc30a718e7ed1da | |
parent | 58e04a08afee39370283c494ee2e4e392fd3b684 (diff) |
Fixed some GooString format markers
-rw-r--r-- | poppler/GfxState.cc | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/poppler/GfxState.cc b/poppler/GfxState.cc index 0bafb6d3..2b0a29ba 100644 --- a/poppler/GfxState.cc +++ b/poppler/GfxState.cc @@ -25,6 +25,7 @@ // Copyright (C) 2011 Andrea Canciani <ranma42@gmail.com> // Copyright (C) 2012 William Bader <williambader@hotmail.com> // Copyright (C) 2013 Lu Wang <coolwanglu@gmail.com> +// Copyright (C) 2013 Fabio D'Urso <fabiodurso@hotmail.it> // // To see a description of the changes please see the Changelog file that // came with your tarball or type make ChangeLog if you are building from git @@ -2361,7 +2362,7 @@ void GfxSeparationColorSpace::createMapping(GooList *separationList, int maxSepC if (!sepCS->getName()->cmp(name)) { if (sepCS->getFunc()->hasDifferentResultSet(func)) { error(errSyntaxWarning, -1, - "Different functions found for '{0:s}', convert immediately", name); + "Different functions found for '{0:t}', convert immediately", name); gfree(mapping); mapping = NULL; return; @@ -2374,7 +2375,7 @@ void GfxSeparationColorSpace::createMapping(GooList *separationList, int maxSepC } if (separationList->getLength() == maxSepComps) { error(errSyntaxWarning, -1, - "Too many ({0:d}) spots, convert '{1:s}' immediately", maxSepComps, name); + "Too many ({0:d}) spots, convert '{1:t}' immediately", maxSepComps, name); gfree(mapping); mapping = NULL; return; @@ -2675,7 +2676,7 @@ void GfxDeviceNColorSpace::createMapping(GooList *separationList, int maxSepComp if (!sepCS->getName()->cmp(names[i])) { if (sepFunc != NULL && sepCS->getFunc()->hasDifferentResultSet(sepFunc)) { error(errSyntaxWarning, -1, - "Different functions found for '{0:s}', convert immediately", names[i]); + "Different functions found for '{0:t}', convert immediately", names[i]); gfree(mapping); mapping = NULL; overprintMask = 0xffffffff; @@ -2691,7 +2692,7 @@ void GfxDeviceNColorSpace::createMapping(GooList *separationList, int maxSepComp if (!found) { if (separationList->getLength() == maxSepComps) { error(errSyntaxWarning, -1, - "Too many ({0:d}) spots, convert '{1:s}' immediately", maxSepComps, names[i]); + "Too many ({0:d}) spots, convert '{1:t}' immediately", maxSepComps, names[i]); gfree(mapping); mapping = NULL; overprintMask = 0xffffffff; |