summaryrefslogtreecommitdiffstats
path: root/kaddressbook/interfaces/contacteditorwidget.h
diff options
context:
space:
mode:
Diffstat (limited to 'kaddressbook/interfaces/contacteditorwidget.h')
-rw-r--r--kaddressbook/interfaces/contacteditorwidget.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/kaddressbook/interfaces/contacteditorwidget.h b/kaddressbook/interfaces/contacteditorwidget.h
index 4b80b44f..28a376e7 100644
--- a/kaddressbook/interfaces/contacteditorwidget.h
+++ b/kaddressbook/interfaces/contacteditorwidget.h
@@ -24,7 +24,7 @@
#ifndef KAB_CONTACTEDITORWIDGET_H
#define KAB_CONTACTEDITORWIDGET_H
-#include <qwidget.h>
+#include <tqwidget.h>
#include <kabc/addressbook.h>
#include <klibloader.h>
@@ -39,9 +39,9 @@ class KDE_EXPORT ContactEditorWidget : public QWidget
Q_OBJECT
public:
- typedef QValueList<ContactEditorWidget*> List;
+ typedef TQValueList<ContactEditorWidget*> List;
- ContactEditorWidget( KABC::AddressBook *ab, QWidget *parent, const char *name = 0 );
+ ContactEditorWidget( KABC::AddressBook *ab, TQWidget *parent, const char *name = 0 );
~ContactEditorWidget();
/**
@@ -116,23 +116,23 @@ class KDE_EXPORT ContactEditorWidget : public QWidget
class ContactEditorWidgetFactory : public KLibFactory
{
public:
- virtual ContactEditorWidget *createWidget( KABC::AddressBook *ab, QWidget *parent,
+ virtual ContactEditorWidget *createWidget( KABC::AddressBook *ab, TQWidget *parent,
const char *name = 0 ) = 0;
/**
Returns the i18ned title of this tab page.
*/
- virtual QString pageTitle() const { return ""; }
+ virtual TQString pageTitle() const { return ""; }
/**
Returns the identifier of the tab page where the widget
shall belong to.
*/
- virtual QString pageIdentifier() const = 0;
+ virtual TQString pageIdentifier() const = 0;
protected:
- virtual QObject* createObject( QObject*, const char*, const char*,
- const QStringList & )
+ virtual TQObject* createObject( TQObject*, const char*, const char*,
+ const TQStringList & )
{
return 0;
}