summaryrefslogtreecommitdiffstats
path: root/lib/kotext/KoCompletionDia.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/kotext/KoCompletionDia.h')
-rw-r--r--lib/kotext/KoCompletionDia.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/lib/kotext/KoCompletionDia.h b/lib/kotext/KoCompletionDia.h
index 7ce49b13..c29135aa 100644
--- a/lib/kotext/KoCompletionDia.h
+++ b/lib/kotext/KoCompletionDia.h
@@ -28,23 +28,24 @@
*/
class KoCompletion : public KoCompletionBase {
Q_OBJECT
+ TQ_OBJECT
public:
- KoCompletion(QWidget *parent, KoAutoFormat *autoFormat );
+ KoCompletion(TQWidget *tqparent, KoAutoFormat *autoFormat );
void saveSettings();
protected slots:
- void changeButtonStatus();
+ void changeButtontqStatus();
void slotResetConf();
void slotAddCompletionEntry();
void slotRemoveCompletionEntry();
- void slotCompletionWordSelected( const QString & );
+ void slotCompletionWordSelected( const TQString & );
void slotSaveCompletionEntry();
protected:
KoAutoFormat m_autoFormat; // The copy we're working on
KoAutoFormat * m_docAutoFormat; // Pointer to the real one (in KWDocument)
- QStringList m_listCompletion; // The copy of the completion items - don't use m_autoFormat.getCompletion()!
+ TQStringList m_listCompletion; // The copy of the completion items - don't use m_autoFormat.getCompletion()!
};
/**
@@ -52,9 +53,10 @@ protected:
*/
class KOTEXT_EXPORT KoCompletionDia : public KDialogBase {
Q_OBJECT
+ TQ_OBJECT
public:
- KoCompletionDia( QWidget *parent, const char *name, KoAutoFormat * autoFormat );
+ KoCompletionDia( TQWidget *tqparent, const char *name, KoAutoFormat * autoFormat );
protected slots:
virtual void slotOk();