diff options
Diffstat (limited to 'qt/qextscintillalexerdiff.cpp')
-rw-r--r-- | qt/qextscintillalexerdiff.cpp | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/qt/qextscintillalexerdiff.cpp b/qt/qextscintillalexerdiff.cpp index ea0e457..8b8c4b4 100644 --- a/qt/qextscintillalexerdiff.cpp +++ b/qt/qextscintillalexerdiff.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 "qextscintillalexerdiff.h" +#include "tqextscintillalexerdiff.h" // The ctor. -QextScintillaLexerDiff::QextScintillaLexerDiff(QObject *parent,const char *name) +QextScintillaLexerDiff::QextScintillaLexerDiff(TQObject *parent,const char *name) : QextScintillaLexer(parent,name) { } @@ -57,35 +57,35 @@ const char *QextScintillaLexerDiff::lexer() const // Return the string of characters that comprise a word. const char *QextScintillaLexerDiff::wordCharacters() const { - return "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ-"; + return "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPTQRSTUVWXYZ-"; } // Returns the foreground colour of the text for a style. -QColor QextScintillaLexerDiff::color(int style) const +TQColor QextScintillaLexerDiff::color(int style) const { switch (style) { case Default: - return QColor(0x00,0x00,0x00); + return TQColor(0x00,0x00,0x00); case Comment: - return QColor(0x00,0x7f,0x00); + return TQColor(0x00,0x7f,0x00); case Command: - return QColor(0x7f,0x7f,0x00); + return TQColor(0x7f,0x7f,0x00); case Header: - return QColor(0x7f,0x00,0x00); + return TQColor(0x7f,0x00,0x00); case Position: - return QColor(0x7f,0x00,0x7f); + return TQColor(0x7f,0x00,0x7f); case LineRemoved: - return QColor(0x00,0x7f,0x7f); + return TQColor(0x00,0x7f,0x7f); case LineAdded: - return QColor(0x00,0x00,0x7f); + return TQColor(0x00,0x00,0x7f); } return QextScintillaLexer::color(style); @@ -93,7 +93,7 @@ QColor QextScintillaLexerDiff::color(int style) const // Returns the user name of a style. -QString QextScintillaLexerDiff::description(int style) const +TQString QextScintillaLexerDiff::description(int style) const { switch (style) { @@ -119,5 +119,5 @@ QString QextScintillaLexerDiff::description(int style) const return tr("Added line"); } - return QString::null; + return TQString(); } |