diff options
author | Timothy Pearson <[email protected]> | 2012-03-01 13:21:06 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-03-01 13:21:06 -0600 |
commit | 7d18baa666593a494ceea480732a8540ba471fe5 (patch) | |
tree | 1c656ba0da61a3bfcf4c4de730e66322865844fe /filters/karbon/eps | |
parent | 951839808408bed4165fc025dbf00caf59ea319b (diff) | |
download | koffice-7d18baa666593a494ceea480732a8540ba471fe5.tar.gz koffice-7d18baa666593a494ceea480732a8540ba471fe5.zip |
Rename additional global TQt functions
Diffstat (limited to 'filters/karbon/eps')
-rw-r--r-- | filters/karbon/eps/epsimport.cc | 4 | ||||
-rw-r--r-- | filters/karbon/eps/pscommentlexer.cc | 20 |
2 files changed, 12 insertions, 12 deletions
diff --git a/filters/karbon/eps/epsimport.cc b/filters/karbon/eps/epsimport.cc index 77a650bb..19742a4d 100644 --- a/filters/karbon/eps/epsimport.cc +++ b/filters/karbon/eps/epsimport.cc @@ -89,7 +89,7 @@ EpsImport::convert( const TQCString& from, const TQCString& to ) file.close(); } else - qDebug ("file could not be opened"); + tqDebug ("file could not be opened"); // sed filter TQString sedFilter = TQString ("sed -e \"s/%%BoundingBox: 0 0 612 792/%%BoundingBox: %1 %2 %3 %4/g\""). @@ -104,7 +104,7 @@ EpsImport::convert( const TQCString& from, const TQCString& to ) command += " > "; command += KProcess::quote(m_chain->outputFile()); - qDebug ("command to execute is (%s)", TQFile::encodeName(command).data()); + tqDebug ("command to execute is (%s)", TQFile::encodeName(command).data()); // Execute it: if( !system( TQFile::encodeName(command)) ) diff --git a/filters/karbon/eps/pscommentlexer.cc b/filters/karbon/eps/pscommentlexer.cc index 04aa9aaa..a321cc0d 100644 --- a/filters/karbon/eps/pscommentlexer.cc +++ b/filters/karbon/eps/pscommentlexer.cc @@ -94,7 +94,7 @@ bool PSCommentLexer::parse (TQIODevice& fin){ { c = fin.getch (); -// qDebug ("got %c", c); +// tqDebug ("got %c", c); State newState; Action action; @@ -121,7 +121,7 @@ bool PSCommentLexer::parse (TQIODevice& fin){ /* ignore */ break; case Action_Abort : - qWarning ( "state %s / %s char %c (%d)" , statetoa(m_curState), statetoa(newState), c, c ); + tqWarning ( "state %s / %s char %c (%d)" , statetoa(m_curState), statetoa(newState), c, c ); parsingAborted(); return false; break; @@ -136,7 +136,7 @@ bool PSCommentLexer::parse (TQIODevice& fin){ fin.ungetch(c); break; default : - qWarning ( "unknown action: %d ", action); + tqWarning ( "unknown action: %d ", action); } m_curState = newState; @@ -155,26 +155,26 @@ void PSCommentLexer::doOutput () gotComment (m_buffer.latin1()); break; default: - qWarning ( "unknown state: %d", m_curState ); + tqWarning ( "unknown state: %d", m_curState ); } m_buffer.clear(); } void PSCommentLexer::gotComment (const char *value) { - qDebug ( "gotComment: %s ", value ); + tqDebug ( "gotComment: %s ", value ); } void PSCommentLexer::parsingStarted() { - qDebug ( "parsing started" ); + tqDebug ( "parsing started" ); } void PSCommentLexer::parsingFinished() { - qDebug ( "parsing finished" ); + tqDebug ( "parsing finished" ); } void PSCommentLexer::parsingAborted() { - qDebug ( "parsing aborted" ); + tqDebug ( "parsing aborted" ); } void PSCommentLexer::nextStep (char c, State *newState, Action *newAction) { @@ -219,7 +219,7 @@ void PSCommentLexer::nextStep (char c, State *newState, Action *newAction) { uchar PSCommentLexer::decode() { uchar value = m_temp.toString().toShort(NULL, 8); -// qDebug ("got encoded char %c",value); +// tqDebug ("got encoded char %c",value); return value; } @@ -312,7 +312,7 @@ bool BoundingBoxExtractor::getRectangle (const char* input, int &llx, int &lly, TQString s2 = s.remove("%BoundingBox:"); TQStringList values = TQStringList::split (" ", s2.latin1()); - qDebug("size is %d",values.size()); + tqDebug("size is %d",values.size()); // if (values.size() < 5) return false; llx = values[0].toInt(); lly = values[1].toInt(); |