summaryrefslogtreecommitdiffstats
path: root/qt/qextscintillaapis.h
diff options
context:
space:
mode:
Diffstat (limited to 'qt/qextscintillaapis.h')
-rw-r--r--qt/qextscintillaapis.h38
1 files changed, 19 insertions, 19 deletions
diff --git a/qt/qextscintillaapis.h b/qt/qextscintillaapis.h
index e112e41..79d8e41 100644
--- a/qt/qextscintillaapis.h
+++ b/qt/qextscintillaapis.h
@@ -3,30 +3,30 @@
// Copyright (c) 2006
// Riverbank Computing Limited <[email protected]>
//
-// 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.
-#ifndef QEXTSCINTILLAAPIS_H
-#define QEXTSCINTILLAAPIS_H
+#ifndef TQEXTSCINTILLAAPIS_H
+#define TQEXTSCINTILLAAPIS_H
-#include <qstringlist.h>
+#include <tqstringlist.h>
-#include <qextscintillaglobal.h>
+#include <tqextscintillaglobal.h>
//! \brief The QextScintillaAPIs class represents the textual API information
@@ -38,11 +38,11 @@
//! parenthesis, and finally followed by optional explanatory text.
//!
//! A function name may be followed by a `?' and a number. The number is used
-//! by auto-completion to display a registered QPixmap with the function name.
+//! by auto-completion to display a registered TQPixmap with the function name.
//!
//! All function names are used by auto-completion, but only those that include
//! function parameters are used in call tips.
-class QEXTSCINTILLA_EXPORT QextScintillaAPIs
+class TQEXTSCINTILLA_EXPORT QextScintillaAPIs
{
public:
//! Constructs a QextScintillaAPIs instance.
@@ -52,11 +52,11 @@ public:
~QextScintillaAPIs();
//! Add the single API entry \a entry to the current set.
- void add(const QString &entry);
+ void add(const TQString &entry);
//! Load the API information from the file named \a fname, adding it to
//! the current set. Returns TRUE if successful, otherwise FALSE.
- bool load(const QString &fname);
+ bool load(const TQString &fname);
//! Deletes all API information.
void clear();
@@ -64,18 +64,18 @@ public:
private:
friend class QextScintilla;
- void autoCompletionList(const QString &starts, bool cs,
- QStringList &wlist);
- QString callTips(const QString &function,int maxnr,int commas);
- QString callTipsNextPrev(int dir);
+ void autoCompletionList(const TQString &starts, bool cs,
+ TQStringList &wlist);
+ TQString callTips(const TQString &function,int maxnr,int commas);
+ TQString callTipsNextPrev(int dir);
void ensureSorted();
bool sorted;
int ctcursor;
- QStringList apis;
- QStringList ctlist;
+ TQStringList apis;
+ TQStringList ctlist;
-#if defined(Q_DISABLE_COPY)
+#if defined(TQ_DISABLE_COPY)
QextScintillaAPIs(const QextScintillaAPIs &);
QextScintillaAPIs &operator=(const QextScintillaAPIs &);
#endif