diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:39:55 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:39:55 +0000 |
commit | 0a6e0958c03e41c87b15557b6f407874f20c2f8d (patch) | |
tree | 2cdd58c4013b1be09cfcbb4ddae2b05712b9aeee /keduca/keducabuilder/keducabuilder.h | |
parent | 83f9dfafc157ff7823804b3ff457b43d021a5b4b (diff) | |
download | tdeedu-0a6e0958c03e41c87b15557b6f407874f20c2f8d.tar.gz tdeedu-0a6e0958c03e41c87b15557b6f407874f20c2f8d.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeedu@1157642 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'keduca/keducabuilder/keducabuilder.h')
-rw-r--r-- | keduca/keducabuilder/keducabuilder.h | 16 |
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 |