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

« back to all changes in this revision

Viewing changes to src/profilenetworknatoptions.cpp

  • 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:
19
19
 ***************************************************************************/
20
20
#include "profilenetworknatoptions.h"
21
21
 
22
 
#include <qcheckbox.h>
23
 
#include <qspinbox.h>
 
22
#include <QtGui/qcheckbox.h>
 
23
#include <QtGui/qspinbox.h>
 
24
#include "widgetnotifyhelper.h"
 
25
#include <iostream>
 
26
#include "widgetnotifyhelper.h"
 
27
#include <iostream>
24
28
 
25
29
ProfileNetworkNatOptions::ProfileNetworkNatOptions(QWidget *parent)
26
 
                : ProfileNetworkNatOptionsBase(parent)
27
 
{}
 
30
{
 
31
        setupUi(this);
 
32
        WidgetNotifyHelper h;
 
33
        h.setupChangedAction(this);
 
34
        dialogModified=false;
 
35
}
28
36
 
29
37
 
30
38
ProfileNetworkNatOptions::~ProfileNetworkNatOptions()
57
65
        }
58
66
}
59
67
 
 
68
void ProfileNetworkNatOptions::dialogChanged()
 
69
{
 
70
//      std::cout << "ProfileNetworkNatOptions::dialogChanged()" << std::endl;
 
71
        dialogModified=true;
 
72
}
 
73
 
60
74
 
61
75