diff options
Diffstat (limited to 'keduca/keducabuilder/kcontroladdedit.h')
-rw-r--r-- | keduca/keducabuilder/kcontroladdedit.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/keduca/keducabuilder/kcontroladdedit.h b/keduca/keducabuilder/kcontroladdedit.h index d700ec43..3144f41e 100644 --- a/keduca/keducabuilder/kcontroladdedit.h +++ b/keduca/keducabuilder/kcontroladdedit.h @@ -37,12 +37,12 @@ class KControlAddEdit : public KControlAddEditBase { Q_OBJECT public: - KControlAddEdit(QWidget *parent = 0, const char *name = 0, bool modal = true, WFlags f = 0); + KControlAddEdit(TQWidget *parent = 0, const char *name = 0, bool modal = true, WFlags f = 0); ~KControlAddEdit(); /** Init keducaFile pointer and EditMode */ void init(FileRead *keducaFile, bool editMode); /** show current Page */ - void showPage(QWidget *page); + void showPage(TQWidget *page); private: @@ -58,14 +58,14 @@ private: void configWrite(); /** Read config settings */ void configRead(); - void setCurrentAnswerItem(QListViewItem *item); + void setCurrentAnswerItem(TQListViewItem *item); void resetAnswerValues(); // Private attributes /** Pointer to keduca of kcontrol page */ FileRead *_keducaFile; /** The currently selected answer item, important for editing of the answer*/ - QListViewItem *_currentAnswerItem; + TQListViewItem *_currentAnswerItem; /** Is a edit modify? */ bool _editMode; @@ -73,7 +73,7 @@ private slots: /** Accept changes */ void accept(); /** An Answer has been selected */ - void slotAnswerSelected(QListViewItem *item); + void slotAnswerSelected(TQListViewItem *item); /** Remove answer */ void slotRemoveAnswer(); /** Button insert */ @@ -85,7 +85,7 @@ private slots: /** Question or Answer data changed */ void slotDataChanged(); /** Preview image */ - void slotPreviewImage( const QString & ); + void slotPreviewImage( const TQString & ); /** Change question type */ void slotQuestionTypeChanged( int index ); }; |