summaryrefslogtreecommitdiffstats
path: root/kregexpeditor
diff options
context:
space:
mode:
Diffstat (limited to 'kregexpeditor')
-rw-r--r--kregexpeditor/KMultiFormListBox/kmultiformlistbox.h2
-rw-r--r--kregexpeditor/auxbuttons.h6
-rw-r--r--kregexpeditor/characterswidget.h2
-rw-r--r--kregexpeditor/charselector.h4
-rw-r--r--kregexpeditor/compoundwidget.h6
-rw-r--r--kregexpeditor/dcbutton.h2
-rw-r--r--kregexpeditor/editorwindow.h2
-rw-r--r--kregexpeditor/kregexpeditorprivate.cpp2
-rw-r--r--kregexpeditor/kregexpeditorprivate.h8
-rw-r--r--kregexpeditor/regexpbuttons.h6
-rw-r--r--kregexpeditor/regexpconverter.h2
-rw-r--r--kregexpeditor/repeatwidget.h6
-rw-r--r--kregexpeditor/scrollededitorwindow.h2
-rw-r--r--kregexpeditor/userdefinedregexps.h2
-rw-r--r--kregexpeditor/verifier.h6
-rw-r--r--kregexpeditor/verifybuttons.h8
-rw-r--r--kregexpeditor/widgetfactory.h2
17 files changed, 34 insertions, 34 deletions
diff --git a/kregexpeditor/KMultiFormListBox/kmultiformlistbox.h b/kregexpeditor/KMultiFormListBox/kmultiformlistbox.h
index a0ef4a8..fd11648 100644
--- a/kregexpeditor/KMultiFormListBox/kmultiformlistbox.h
+++ b/kregexpeditor/KMultiFormListBox/kmultiformlistbox.h
@@ -31,7 +31,7 @@
#include <klocale.h>
#endif
-class QDataStream;
+class TQDataStream;
typedef TQPtrList<KMultiFormListBoxEntry> KMultiFormListBoxEntryList ;
diff --git a/kregexpeditor/auxbuttons.h b/kregexpeditor/auxbuttons.h
index 9a8a1fa..ef88ab5 100644
--- a/kregexpeditor/auxbuttons.h
+++ b/kregexpeditor/auxbuttons.h
@@ -19,9 +19,9 @@
#define AUXBUTTONS_H
#include <tqdockwindow.h>
-class QComboBox;
-class QLabel;
-class QToolButton;
+class TQComboBox;
+class TQLabel;
+class TQToolButton;
class AuxButtons :public QDockWindow
{
diff --git a/kregexpeditor/characterswidget.h b/kregexpeditor/characterswidget.h
index f6f2d66..faff294 100644
--- a/kregexpeditor/characterswidget.h
+++ b/kregexpeditor/characterswidget.h
@@ -32,7 +32,7 @@ class KDialogBase;
class CharacterEdits;
class TextRangeRegExp;
class CharSelector;
-class QCheckBox;
+class TQCheckBox;
/**
RegExp widget for charcter ranges.
diff --git a/kregexpeditor/charselector.h b/kregexpeditor/charselector.h
index 4990ada..4f34e67 100644
--- a/kregexpeditor/charselector.h
+++ b/kregexpeditor/charselector.h
@@ -20,8 +20,8 @@
#include <tqwidget.h>
-class QComboBox;
-class QWidgetStack;
+class TQComboBox;
+class TQWidgetStack;
class LimitedCharLineEdit;
class CharSelector :public QWidget
diff --git a/kregexpeditor/compoundwidget.h b/kregexpeditor/compoundwidget.h
index 4f68b9e..07dc099 100644
--- a/kregexpeditor/compoundwidget.h
+++ b/kregexpeditor/compoundwidget.h
@@ -17,10 +17,10 @@
**/
#ifndef compoundwidget
#define compoundwidget
-class QLineEdit;
-class QMultiLineEdit;
+class TQLineEdit;
+class TQMultiLineEdit;
class KDialogBase;
-class QCheckBox;
+class TQCheckBox;
#include "singlecontainerwidget.h"
#include "compoundregexp.h"
diff --git a/kregexpeditor/dcbutton.h b/kregexpeditor/dcbutton.h
index 7a81e18..0e2b6cf 100644
--- a/kregexpeditor/dcbutton.h
+++ b/kregexpeditor/dcbutton.h
@@ -19,7 +19,7 @@
#define dcbutton
#include <tqtoolbutton.h>
-class QMouseEvent;
+class TQMouseEvent;
/**
TQToolButton extended to emit a signal on double click.
diff --git a/kregexpeditor/editorwindow.h b/kregexpeditor/editorwindow.h
index dca5603..7eb565e 100644
--- a/kregexpeditor/editorwindow.h
+++ b/kregexpeditor/editorwindow.h
@@ -25,7 +25,7 @@
#include <tqiconset.h>
class RegExp;
class RegExpWidget;
-class QHBoxLayout;
+class TQHBoxLayout;
/** Widget representing the editor window of a regular expression editor.
diff --git a/kregexpeditor/kregexpeditorprivate.cpp b/kregexpeditor/kregexpeditorprivate.cpp
index e7796c8..fad06f9 100644
--- a/kregexpeditor/kregexpeditorprivate.cpp
+++ b/kregexpeditor/kregexpeditorprivate.cpp
@@ -89,7 +89,7 @@ KRegExpEditorPrivate::KRegExpEditorPrivate(TQWidget *parent, const char *name)
TQVBoxLayout *topLayout = new TQVBoxLayout( this, 0, 6, "KRegExpEditorPrivate::topLayout" );
topLayout->addWidget( area );
- TQHBoxLayout* rows = new QHBoxLayout; // I need to cal addLayout explicit to get stretching right.
+ TQHBoxLayout* rows = new TQHBoxLayout; // I need to cal addLayout explicit to get stretching right.
topLayout->addLayout( rows, 1 );
rows->addWidget( verArea1 );
diff --git a/kregexpeditor/kregexpeditorprivate.h b/kregexpeditor/kregexpeditorprivate.h
index c7858d5..369334e 100644
--- a/kregexpeditor/kregexpeditorprivate.h
+++ b/kregexpeditor/kregexpeditorprivate.h
@@ -22,20 +22,20 @@
#include <tqptrstack.h>
#include "regexp.h"
#include "errormap.h"
-class QTimer;
+class TQTimer;
class RegExpScrolledEditorWindow;
-class QLineEdit;
+class TQLineEdit;
class InfoPage;
class UserDefinedRegExps;
-class QSplitter;
+class TQSplitter;
class Verifier;
class VerifyButtons;
class AuxButtons;
class RegExpLineEdit;
class RegExpConverter;
class RegExpButtons;
-class QToolButton;
+class TQToolButton;
/**
Widget used to build a regular expression
diff --git a/kregexpeditor/regexpbuttons.h b/kregexpeditor/regexpbuttons.h
index 5c81049..6565746 100644
--- a/kregexpeditor/regexpbuttons.h
+++ b/kregexpeditor/regexpbuttons.h
@@ -21,9 +21,9 @@
#include <tqdockwindow.h>
#include "widgetfactory.h"
class DoubleClickButton;
-class QButtonGroup;
-class QToolButton;
-class QSignalMapper;
+class TQButtonGroup;
+class TQToolButton;
+class TQSignalMapper;
class RegExpButtons :public QDockWindow
diff --git a/kregexpeditor/regexpconverter.h b/kregexpeditor/regexpconverter.h
index cbb3a59..5c3514a 100644
--- a/kregexpeditor/regexpconverter.h
+++ b/kregexpeditor/regexpconverter.h
@@ -22,7 +22,7 @@
#include <tqstring.h>
#include <tqvaluelist.h>
-class QTextEdit;
+class TQTextEdit;
class AltnRegExp;
class ConcRegExp;
class LookAheadRegExp;
diff --git a/kregexpeditor/repeatwidget.h b/kregexpeditor/repeatwidget.h
index 747ba30..e150cac 100644
--- a/kregexpeditor/repeatwidget.h
+++ b/kregexpeditor/repeatwidget.h
@@ -20,10 +20,10 @@
#include "singlecontainerwidget.h"
#include <tqvbox.h>
-class QButtonGroup;
+class TQButtonGroup;
class KDialogBase;
-class QCheckBox;
-class QSpinBox;
+class TQCheckBox;
+class TQSpinBox;
class RepeatRegExp;
/**
diff --git a/kregexpeditor/scrollededitorwindow.h b/kregexpeditor/scrollededitorwindow.h
index a89a588..35aa14e 100644
--- a/kregexpeditor/scrollededitorwindow.h
+++ b/kregexpeditor/scrollededitorwindow.h
@@ -19,7 +19,7 @@
#define __scrolledEditorWindow
#include <tqhbox.h>
-class QScrollView;
+class TQScrollView;
class RegExpEditorWindow;
class RegExp;
diff --git a/kregexpeditor/userdefinedregexps.h b/kregexpeditor/userdefinedregexps.h
index e1fede4..30fe777 100644
--- a/kregexpeditor/userdefinedregexps.h
+++ b/kregexpeditor/userdefinedregexps.h
@@ -22,7 +22,7 @@
#include "compoundregexp.h"
-class QPoint;
+class TQPoint;
class RegExp;
class UserDefinedRegExps :public QDockWindow
diff --git a/kregexpeditor/verifier.h b/kregexpeditor/verifier.h
index 07454ba..c22c27a 100644
--- a/kregexpeditor/verifier.h
+++ b/kregexpeditor/verifier.h
@@ -19,9 +19,9 @@
#define VERIFIER_H
#include <tqtextedit.h>
#include "regexphighlighter.h"
-class QTimer;
-class QProgressDialog;
-class QLabel;
+class TQTimer;
+class TQProgressDialog;
+class TQLabel;
class SyntaxHighlighter;
class Verifier :public QTextEdit
{
diff --git a/kregexpeditor/verifybuttons.h b/kregexpeditor/verifybuttons.h
index 39fdf4c..abebe90 100644
--- a/kregexpeditor/verifybuttons.h
+++ b/kregexpeditor/verifybuttons.h
@@ -20,10 +20,10 @@
#include <tqdockwindow.h>
#include "regexpconverter.h"
-class QToolButton;
-class QLabel;
-class QAction;
-class QPopupMenu;
+class TQToolButton;
+class TQLabel;
+class TQAction;
+class TQPopupMenu;
class VerifyButtons :public QDockWindow
{
diff --git a/kregexpeditor/widgetfactory.h b/kregexpeditor/widgetfactory.h
index 3a55a74..2ef7233 100644
--- a/kregexpeditor/widgetfactory.h
+++ b/kregexpeditor/widgetfactory.h
@@ -22,7 +22,7 @@
class RegExpWidget;
class RegExpEditorWindow;
-class QWidget;
+class TQWidget;
class ConcWidget;
class RegExp;