summaryrefslogtreecommitdiffstats
path: root/kopete/libkopete/ui/contactaddednotifydialog.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:48:06 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:48:06 +0000
commit47c8a359c5276062c4bc17f0e82410f29081b502 (patch)
tree2d54a5f60a5b74067632f9ef6df58c2bc38155e6 /kopete/libkopete/ui/contactaddednotifydialog.h
parent6f82532777a35e0e60bbd2b290b2e93e646f349b (diff)
downloadtdenetwork-47c8a359c5276062c4bc17f0e82410f29081b502.tar.gz
tdenetwork-47c8a359c5276062c4bc17f0e82410f29081b502.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1157648 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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: