~ubuntu-branches/ubuntu/vivid/kvpnc/vivid-proposed

« back to all changes in this revision

Viewing changes to src/enterxauthinteractivepasscodedialog.h

  • Committer: Bazaar Package Importer
  • Author(s): Mark Purcell
  • Date: 2009-04-23 09:18:50 UTC
  • mfrom: (1.1.10 upstream) (8.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20090423091850-hweeg0jo64t0jx52
Tags: 0.9.1-1
* New upstream release (KDE4 is here)
* Add Build-Depends cmake and pkg-kde-tools
* Remove obsolete debian/patches
* Refresh debian/patches:
  - 10_su-to-root_usage.diff
  - 13_add_kuser_issuperuser.diff
* Cleanup debian/rules - simple under KDE4
* Update debian/watch for KDE4 version
* Update debian/copyright - use versionned licenses
* Update Section field - move to utils
* Remove obsolete dependencies: kdebase-bin, gksu, sux and modutils
* Update debian/kvpnc.{manpages,1}

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#ifndef __EnterXauthInteractivePasscodeDialog__
21
21
#define __EnterXauthInteractivePasscodeDialog__
22
22
 
23
 
#include "enterxauthinteractivepasscodedialogbase.h"
24
 
#include <kdialogbase.h>
 
23
#include "ui_enterxauthinteractivepasscodedialogbase4.h"
 
24
#include <kdialog.h>
25
25
 
26
 
class EnterXauthInteractivePasscodeDialog : public KDialogBase {
 
26
class EnterXauthInteractivePasscodeDialog : public KDialog, public Ui_EnterXauthInteractivePasscodeDialogBase
 
27
{
27
28
        Q_OBJECT
28
29
public:
29
30
        EnterXauthInteractivePasscodeDialog(QWidget *parent, const QString& caption);
34
35
        
35
36
public:
36
37
        QString Password;
37
 
        EnterXauthInteractivePasscodeDialogBase *main;
38
38
};
39
39
 
40
40
#endif