summaryrefslogtreecommitdiffstats
path: root/kopete/libkopete/ui/contactaddednotifydialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'kopete/libkopete/ui/contactaddednotifydialog.h')
-rw-r--r--kopete/libkopete/ui/contactaddednotifydialog.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/kopete/libkopete/ui/contactaddednotifydialog.h b/kopete/libkopete/ui/contactaddednotifydialog.h
index 96f8844c..be5349a4 100644
--- a/kopete/libkopete/ui/contactaddednotifydialog.h
+++ b/kopete/libkopete/ui/contactaddednotifydialog.h
@@ -43,9 +43,9 @@ namespace UI {
* @code
Kopete::UI::ContactAddedNotifyDialog *dialog =
- new ContactAddedNotifyDialog(contactId, QString::null,account);
- QObject::connect(dialog,SIGNAL(applyClicked(const QString&)),this,SLOT(contactAddedDialogApplied()));
- QObject::connect(dialog,SIGNAL(infoClicked(const QString&)),this,SLOT(contactAddedDialogInfo()));
+ new ContactAddedNotifyDialog(contactId, TQString::null,account);
+ TQObject::connect(dialog,TQT_SIGNAL(applyClicked(const TQString&)),this,TQT_SLOT(contactAddedDialogApplied()));
+ TQObject::connect(dialog,TQT_SIGNAL(infoClicked(const TQString&)),this,TQT_SLOT(contactAddedDialogInfo()));
dialog->show();
* @endcode
@@ -93,7 +93,7 @@ public:
* @param hide a bitmask of HideWidget used to hide some widget. By default, everything is shown.
*
*/
- ContactAddedNotifyDialog(const QString& contactId, const QString& contactNick=QString::null,
+ ContactAddedNotifyDialog(const TQString& contactId, const TQString& contactNick=TQString::null,
Kopete::Account *account=0L, uint hide=0x00);
/**
@@ -116,7 +116,7 @@ public:
/**
* @brief return the display name the user has entered
*/
- QString displayName() const;
+ TQString displayName() const;
/**
* @brief return the group the user has selected
@@ -144,7 +144,7 @@ signals:
* @brief the dialog has been applied
* @param contactId is the id of the contact passed in the constructor.
*/
- void applyClicked(const QString &contactId);
+ void applyClicked(const TQString &contactId);
/**
* @brief the button "info" has been pressed
@@ -155,7 +155,7 @@ signals:
* hint: you can use sender() as parent of the new dialog
* @param contactId is the id of the contact passed in the constructor.
*/
- void infoClicked(const QString &contactId);
+ void infoClicked(const TQString &contactId);
private slots: