-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 @@ -41,26 +41,26 @@ QWidget* VirtualModule::configure( Interface* ) { return 0l; } QWidget* VirtualModule::information( Interface* iface ) { return new InterfaceInformationImp(0, "Interface info", iface ); } QList<Interface> VirtualModule::getInterfaces() { return m_interfaces; } void VirtualModule::possibleNewInterfaces( QMap<QString, QString>& map) { - map.insert( QObject::tr("VPN PPTP"), - QObject::tr("Add new Point to Point Tunnel Protocol connection" ) ); + map.insert( ::QObject::tr("VPN PPTP"), + ::QObject::tr("Add new Point to Point Tunnel Protocol connection" ) ); } Interface* VirtualModule::addNewInterface( const QString& ) { /* check the str if we support more interfaces */ /* Interface* iface = new VirtualInterface( 0 ); iface->setModuleOwner( this ); return iface;*/ // if we would support saving interfaces we could add // them here |