~ubuntu-branches/ubuntu/quantal/psi/quantal

« back to all changes in this revision

Viewing changes to src/passphrasedlg.h

  • Committer: Bazaar Package Importer
  • Author(s): Jan Niehusmann
  • Date: 2008-04-14 18:57:30 UTC
  • mfrom: (2.1.9 hardy)
  • Revision ID: james.westby@ubuntu.com-20080414185730-528re3zp0m2hdlhi
Tags: 0.11-8
* added CONFIG -= link_prl to .pro files and removed dependencies
  which are made unnecessary by this change
* Fix segfault when closing last chat tab with qt4.4
  (This is from upstream svn, rev. 1101) (Closes: Bug#476122)

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#ifndef PASSPHRASEDLG_H
22
22
#define PASSPHRASEDLG_H
23
23
 
24
 
#include"ui_passphrase.h"
 
24
#include "ui_passphrase.h"
25
25
 
26
 
class PassphraseDlg : public PassphraseUI
 
26
class PassphraseDlg : public QDialog
27
27
{
28
28
        Q_OBJECT
29
29
public:
30
 
        PassphraseDlg(QWidget *parent=0, const char *name=0);
31
 
        ~PassphraseDlg();
32
 
 
33
 
        QString passphrase() const;
34
 
        void unblock();
35
 
 
36
 
signals:
37
 
        void submitPassphrase(const QString &);
38
 
        void rejectPassphrase();
39
 
 
40
 
public slots:
41
 
        void reject();
42
 
 
43
 
private slots:
44
 
        void doOK();
 
30
        PassphraseDlg(QWidget* parent = 0);
 
31
 
 
32
        void promptPassphrase(const QString& name);
 
33
 
 
34
        QString getPassphrase() const;
 
35
 
 
36
private:
 
37
        Ui::Passphrase ui_;
45
38
};
46
39
 
47
40
#endif