~telepathy-kde/telepathy-kde/ktp-auth-handler

« back to all changes in this revision

Viewing changes to x-telepathy-password-auth-operation.h

  • Committer: David Edmundson
  • Date: 2012-08-09 19:23:23 UTC
  • Revision ID: kde@davidedmundson.co.uk-20120809192323-u48a6h5tzbyb7p1c
Updated to new WalletInterface

REVIEW:105899

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
#include <TelepathyQt/Types>
25
25
#include "x-telepathy-password-prompt.h"
26
26
 
 
27
#include <KTp/wallet-interface.h>
 
28
 
27
29
class XTelepathyPasswordAuthOperation : public Tp::PendingOperation
28
30
{
29
31
    Q_OBJECT
33
35
    explicit XTelepathyPasswordAuthOperation(
34
36
            const Tp::AccountPtr &account,
35
37
            Tp::Client::ChannelInterfaceSASLAuthenticationInterface *saslIface,
 
38
            KTp::WalletInterface *walletInterface,
36
39
            bool canTryAgain);
37
40
    ~XTelepathyPasswordAuthOperation();
38
41
 
45
48
 
46
49
    Tp::AccountPtr m_account;
47
50
    Tp::Client::ChannelInterfaceSASLAuthenticationInterface *m_saslIface;
 
51
    KTp::WalletInterface *m_walletInterface;
48
52
    bool m_canTryAgain;
49
53
    QWeakPointer<XTelepathyPasswordPrompt> m_dialog;
50
54