From b678e7f967f438e123324c7a34b02388e68d70dc Mon Sep 17 00:00:00 2001 From: tpearson Date: Mon, 2 Aug 2010 19:29:01 +0000 Subject: TQt conversion fixes git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeutils@1158453 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kregexpeditor/KMultiFormListBox/kmultiformlistbox.h | 2 +- kregexpeditor/auxbuttons.h | 6 +++--- kregexpeditor/characterswidget.h | 2 +- kregexpeditor/charselector.h | 4 ++-- kregexpeditor/compoundwidget.h | 6 +++--- kregexpeditor/dcbutton.h | 2 +- kregexpeditor/editorwindow.h | 2 +- kregexpeditor/kregexpeditorprivate.cpp | 2 +- kregexpeditor/kregexpeditorprivate.h | 8 ++++---- kregexpeditor/regexpbuttons.h | 6 +++--- kregexpeditor/regexpconverter.h | 2 +- kregexpeditor/repeatwidget.h | 6 +++--- kregexpeditor/scrollededitorwindow.h | 2 +- kregexpeditor/userdefinedregexps.h | 2 +- kregexpeditor/verifier.h | 6 +++--- kregexpeditor/verifybuttons.h | 8 ++++---- kregexpeditor/widgetfactory.h | 2 +- 17 files changed, 34 insertions(+), 34 deletions(-) (limited to 'kregexpeditor') 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 #endif -class QDataStream; +class TQDataStream; typedef TQPtrList 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 -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 -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 -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 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 #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 #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 #include -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 -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 -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 #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 #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; -- cgit v1.2.1