~ubuntu-branches/ubuntu/precise/networkmanagement/precise-updates

« back to all changes in this revision

Viewing changes to libs/ui/pppoepreferences.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Michael Biebl, Modestas Vainius, Michael Biebl
  • Date: 2011-05-27 12:18:25 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20110527121825-vfufwquq3vy0k3zn
Tags: 0.1+git20110526.911025d-1
[ Modestas Vainius ]
* Use official KDE branding in the package descriptions.

[ Michael Biebl ]
* New upstream Git snapshot 911025d81fdfbe09b64705e94e5411f521c38e3e.
* debian/control
  - Bump Build-Depends on kdelibs5-dev and kdebase-workspace-dev to
    (>= 4:4.6.0).
  - Bump Build-Depends on network-manager-dev and libnm-util-dev to
    (>= 0.8.1).
  - Bump Depends on network-manager to (>= 0.8.1).

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
#include "pppwidget.h"
29
29
#include "wiredwidget.h"
30
30
#include "ipv4widget.h"
 
31
#include "ipv6widget.h"
31
32
#include "connectionwidget.h"
32
33
#include "connection.h"
33
34
 
73
74
    WiredWidget * wiredWidget = new WiredWidget(m_connection, this);
74
75
    PppWidget * pppWidget = new PppWidget(m_connection, this);
75
76
    IpV4Widget * ipv4Widget = new IpV4Widget(m_connection, this);
 
77
    IpV6Widget * ipv6Widget = new IpV6Widget(m_connection, this);
76
78
 
77
79
    addToTabWidget(pppoeWidget);
78
80
    addToTabWidget(wiredWidget);
79
81
    addToTabWidget(ipv4Widget);
 
82
    addToTabWidget(ipv6Widget);
80
83
    addToTabWidget(pppWidget);
81
84
}
82
85