summaryrefslogtreecommitdiffstats
path: root/kpdf/core
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2018-12-02 00:22:41 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2018-12-02 00:22:41 +0900
commit2c146f492cee07bd1eb8e7a5bcf21b3619291718 (patch)
treee007a9e917cb7ce2a25fca332527821abea951fb /kpdf/core
parent358d9e899a115389549ab081f0f3571e703cc519 (diff)
downloadtdegraphics-2c146f492cee07bd1eb8e7a5bcf21b3619291718.tar.gz
tdegraphics-2c146f492cee07bd1eb8e7a5bcf21b3619291718.zip
Removed TQStringToGString, which is fundamentally wrong.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kpdf/core')
-rw-r--r--kpdf/core/generator_pdf/generator_pdf.cpp10
1 files changed, 1 insertions, 9 deletions
diff --git a/kpdf/core/generator_pdf/generator_pdf.cpp b/kpdf/core/generator_pdf/generator_pdf.cpp
index 12e7fd0b..5c0046d3 100644
--- a/kpdf/core/generator_pdf/generator_pdf.cpp
+++ b/kpdf/core/generator_pdf/generator_pdf.cpp
@@ -524,14 +524,6 @@ bool PDFGenerator::print( KPrinter& printer )
}
}
-static GString *TQStringToGString(const TQString &s) {
- int len = s.length();
- char *cstring = (char *)gmallocn(s.length(), sizeof(char));
- for (int i = 0; i < len; ++i)
- cstring[i] = s.at(i).unicode();
- return new GString(cstring, len);
-}
-
static TQString unicodeToTQString(Unicode* u, int len) {
TQString ret;
ret.setLength(len);
@@ -586,7 +578,7 @@ TQString PDFGenerator::getMetaData( const TQString & key, const TQString & optio
// asking for the page related to a 'named link destination'. the
// option is the link name. @see addSynopsisChildren.
DocumentViewport viewport;
- GString * namedDest = TQStringToGString(option);
+ GString * namedDest = new GString( option.utf8() );
docLock.lock();
LinkDest * destination = pdfdoc->findDest( namedDest );
if ( destination )