qt -> tqt conversion:

QT_NO_ASCII_CAST -> TQT_NO_ASCII_CAST
QT_NO_STL -> TQT_NO_STL
QT_NO_COMPAT -> TQT_NO_COMPAT
QT_NO_TRANSLATION -> TQT_NO_TRANSLATION

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
pull/1/head
Michele Calgaro 6 years ago
parent 144f8fe582
commit 5be7ad1e71
Signed by: MicheleC
GPG Key ID: 2A75B7CA8ADED5CF

@ -184,12 +184,12 @@ int EditorHighlighter::highlightParagraph ( const TQString & text, int )
case Token::Identifier:
{
color = editor->highlightColor( Editor::Variable );
#ifndef QT_NO_STL
#ifndef TQT_NO_STL
if( binary_search( fnames.constBegin(), fnames.constEnd(), text) ) {
#else // QT_NO_STL
#else // TQT_NO_STL
#warning "Not using STL libraries; performance may be degraded..."
if( fnames.find( text) != fnames.end()) {
#endif // QT_NO_STL
#endif // TQT_NO_STL
color = editor->highlightColor( Editor::FunctionName );
}
}

Loading…
Cancel
Save