~ubuntu-branches/ubuntu/oneiric/psi/oneiric

« back to all changes in this revision

Viewing changes to src/adduserdlg.h

  • Committer: Bazaar Package Importer
  • Author(s): Jan Niehusmann
  • Date: 2009-09-25 17:49:51 UTC
  • mfrom: (6.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20090925174951-lvm7kdap82o8xhn3
Tags: 0.13-1
* Updated to upstream version 0.13
* Set Standards-Version to 3.8.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
        Q_OBJECT
36
36
public:
37
37
        AddUserDlg(const QStringList &services, const QStringList &names, const QStringList &groups, PsiAccount *);
 
38
        AddUserDlg(const XMPP::Jid &jid, const QString &nick, const QString &group, const QStringList &groups, PsiAccount *);
38
39
        ~AddUserDlg();
39
40
 
40
41
signals:
45
46
        void cancel();
46
47
        void serviceActivated(int);
47
48
        void getTransID();
48
 
        void pa_updatedActivity();
49
49
        void jt_getFinished();
50
50
        void jt_setFinished();
51
51
        void le_transPromptChanged(const QString &);
57
57
        void jid_Changed();
58
58
 
59
59
private:
 
60
        void init(const QStringList &groups, PsiAccount *);
60
61
        class Private;
61
62
        Private *d;
62
63