summaryrefslogtreecommitdiffstats
path: root/qt/qextscintillalexermakefile.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'qt/qextscintillalexermakefile.cpp')
-rw-r--r--qt/qextscintillalexermakefile.cpp50
1 files changed, 25 insertions, 25 deletions
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 <info@riverbankcomputing.co.uk>
//
-// 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 <qcolor.h>
-#include <qfont.h>
-#include <qsettings.h>
+#include <tqcolor.h>
+#include <tqfont.h>
+#include <tqsettings.h>
-#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);
}