From 03bc485016127d419bbbbc3cfb09e21e8754b383 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Wed, 30 Nov 2011 12:33:18 -0600 Subject: Initial automated TQt conversion --- qt/qextscintillalexermakefile.cpp | 50 +++++++++++++++++++-------------------- 1 file changed, 25 insertions(+), 25 deletions(-) (limited to 'qt/qextscintillalexermakefile.cpp') diff --git a/qt/qextscintillalexermakefile.cpp b/qt/qextscintillalexermakefile.cpp index 10e219b..5cb68f3 100644 --- a/qt/qextscintillalexermakefile.cpp +++ b/qt/qextscintillalexermakefile.cpp @@ -3,32 +3,32 @@ // Copyright (c) 2006 // Riverbank Computing Limited // -// This file is part of QScintilla. +// This file is part of TQScintilla. // -// This copy of QScintilla is free software; you can redistribute it and/or +// This copy of TQScintilla is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License as published by // the Free Software Foundation; either version 2, or (at your option) any // later version. // -// QScintilla is supplied in the hope that it will be useful, but WITHOUT ANY +// TQScintilla is supplied in the hope that it will be useful, but WITHOUT ANY // WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // FOR A PARTICULAR PURPOSE. See the GNU General Public License for more // details. // // You should have received a copy of the GNU General Public License along with -// QScintilla; see the file LICENSE. If not, write to the Free Software +// TQScintilla; see the file LICENSE. If not, write to the Free Software // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -#include -#include -#include +#include +#include +#include -#include "qextscintillalexermakefile.h" +#include "tqextscintillalexermakefile.h" // The ctor. -QextScintillaLexerMakefile::QextScintillaLexerMakefile(QObject *parent,const char *name) +QextScintillaLexerMakefile::QextScintillaLexerMakefile(TQObject *parent,const char *name) : QextScintillaLexer(parent,name) { } @@ -57,33 +57,33 @@ const char *QextScintillaLexerMakefile::lexer() const // Return the string of characters that comprise a word. const char *QextScintillaLexerMakefile::wordCharacters() const { - return "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ-"; + return "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPTQRSTUVWXYZ-"; } // Returns the foreground colour of the text for a style. -QColor QextScintillaLexerMakefile::color(int style) const +TQColor QextScintillaLexerMakefile::color(int style) const { switch (style) { case Default: case Operator: - return QColor(0x00,0x00,0x00); + return TQColor(0x00,0x00,0x00); case Comment: - return QColor(0x00,0x7f,0x00); + return TQColor(0x00,0x7f,0x00); case Preprocessor: - return QColor(0x7f,0x7f,0x00); + return TQColor(0x7f,0x7f,0x00); case Variable: - return QColor(0x00,0x00,0x80); + return TQColor(0x00,0x00,0x80); case Target: - return QColor(0xa0,0x00,0x00); + return TQColor(0xa0,0x00,0x00); case Error: - return QColor(0xff,0xff,0x00); + return TQColor(0xff,0xff,0x00); } return QextScintillaLexer::color(style); @@ -98,15 +98,15 @@ bool QextScintillaLexerMakefile::eolFill(int style) const // Returns the font of the text for a style. -QFont QextScintillaLexerMakefile::font(int style) const +TQFont QextScintillaLexerMakefile::font(int style) const { - QFont f; + TQFont f; if (style == Comment) #if defined(Q_OS_WIN) - f = QFont("Comic Sans MS",9); + f = TQFont("Comic Sans MS",9); #else - f = QFont("Bitstream Vera Serif",9); + f = TQFont("Bitstream Vera Serif",9); #endif else f = QextScintillaLexer::font(style); @@ -116,7 +116,7 @@ QFont QextScintillaLexerMakefile::font(int style) const // Returns the user name of a style. -QString QextScintillaLexerMakefile::description(int style) const +TQString QextScintillaLexerMakefile::description(int style) const { switch (style) { @@ -142,15 +142,15 @@ QString QextScintillaLexerMakefile::description(int style) const return tr("Error"); } - return QString::null; + return TQString(); } // Returns the background colour of the text for a style. -QColor QextScintillaLexerMakefile::paper(int style) const +TQColor QextScintillaLexerMakefile::paper(int style) const { if (style == Error) - return QColor(0xff,0x00,0x00); + return TQColor(0xff,0x00,0x00); return QextScintillaLexer::paper(style); } -- cgit v1.2.3