summaryrefslogtreecommitdiffstats
path: root/keduca/keducabuilder/keducabuilder.h
diff options
context:
space:
mode:
Diffstat (limited to 'keduca/keducabuilder/keducabuilder.h')
-rw-r--r--keduca/keducabuilder/keducabuilder.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/keduca/keducabuilder/keducabuilder.h b/keduca/keducabuilder/keducabuilder.h
index 74c5eb58..c3a736a7 100644
--- a/keduca/keducabuilder/keducabuilder.h
+++ b/keduca/keducabuilder/keducabuilder.h
@@ -25,8 +25,8 @@
#include <klistbox.h>
#include <kaction.h>
-#include <qtextview.h>
-#include <qsplitter.h>
+#include <tqtextview.h>
+#include <tqsplitter.h>
/**Main control documents
* The Editor. This is the new main window of KEduca.
@@ -38,7 +38,7 @@ class KEducaBuilder : public KMainWindow {
Q_OBJECT
public:
- KEducaBuilder(QWidget* parent=0, const char *name=0, WFlags f = WType_TopLevel | WDestructiveClose);
+ KEducaBuilder(TQWidget* parent=0, const char *name=0, WFlags f = WType_TopLevel | WDestructiveClose);
~KEducaBuilder();
/** start a dialog that asks the user what he wants to do to start*/
bool startChooser();
@@ -79,12 +79,12 @@ private:
/** List of answers */
KListBox *_listAnswer;
/** Preview */
- QTextView *_preview;
+ TQTextView *_preview;
/** Main splitter */
- QSplitter *_split;
+ TQSplitter *_split;
/** I open a file */
bool _isOpenFile;
- QString _nativeFormat;
+ TQString _nativeFormat;
public slots:
/** Open new file */
@@ -96,7 +96,7 @@ private slots:
/** Open new document. */
void slotFileOpen();
/** Item select */
- void slotPreview( QListBoxItem *item );
+ void slotPreview( TQListBoxItem *item );
/** Close the window */
bool queryClose();
/** Edit question */
@@ -120,7 +120,7 @@ private slots:
/** Init Gallery */
void slotGallery();
/** Double click in list, edit question */
- void slotEditbyList(QListBoxItem *item);
+ void slotEditbyList(TQListBoxItem *item);
};
#endif