-rw-r--r-- | examples/networksettings/examplemodule.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/networksettings/examplemodule.cpp b/examples/networksettings/examplemodule.cpp index 703e6bd..1f64613 100644 --- a/examples/networksettings/examplemodule.cpp +++ b/examples/networksettings/examplemodule.cpp | |||
@@ -37,34 +37,34 @@ bool VirtualModule::isOwner( Interface* iface ) { | |||
37 | } | 37 | } |
38 | 38 | ||
39 | QWidget* VirtualModule::configure( Interface* ) { | 39 | QWidget* VirtualModule::configure( Interface* ) { |
40 | /* We don't have any Config for now */ | 40 | /* We don't have any Config for now */ |
41 | return 0l; | 41 | return 0l; |
42 | } | 42 | } |
43 | 43 | ||
44 | QWidget* VirtualModule::information( Interface* iface ) { | 44 | QWidget* VirtualModule::information( Interface* iface ) { |
45 | return new InterfaceInformationImp(0, "Interface info", iface ); | 45 | return new InterfaceInformationImp(0, "Interface info", iface ); |
46 | } | 46 | } |
47 | 47 | ||
48 | QList<Interface> VirtualModule::getInterfaces() { | 48 | QList<Interface> VirtualModule::getInterfaces() { |
49 | return m_interfaces; | 49 | return m_interfaces; |
50 | } | 50 | } |
51 | 51 | ||
52 | void VirtualModule::possibleNewInterfaces( QMap<QString, QString>& map) { | 52 | void VirtualModule::possibleNewInterfaces( QMap<QString, QString>& map) { |
53 | map.insert( QObject::tr("VPN PPTP"), | 53 | map.insert( ::QObject::tr("VPN PPTP"), |
54 | QObject::tr("Add new Point to Point Tunnel Protocol connection" ) ); | 54 | ::QObject::tr("Add new Point to Point Tunnel Protocol connection" ) ); |
55 | } | 55 | } |
56 | 56 | ||
57 | 57 | ||
58 | Interface* VirtualModule::addNewInterface( const QString& ) { | 58 | Interface* VirtualModule::addNewInterface( const QString& ) { |
59 | /* check the str if we support more interfaces */ | 59 | /* check the str if we support more interfaces */ |
60 | /* | 60 | /* |
61 | Interface* iface = new VirtualInterface( 0 ); | 61 | Interface* iface = new VirtualInterface( 0 ); |
62 | iface->setModuleOwner( this ); | 62 | iface->setModuleOwner( this ); |
63 | return iface;*/ | 63 | return iface;*/ |
64 | 64 | ||
65 | // if we would support saving interfaces we could add | 65 | // if we would support saving interfaces we could add |
66 | // them here | 66 | // them here |
67 | 67 | ||
68 | return 0; | 68 | return 0; |
69 | } | 69 | } |
70 | 70 | ||