author | mickeyl <mickeyl> | 2004-04-24 16:44:28 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2004-04-24 16:44:28 (UTC) |
commit | 77c2cf85d5cabcc754a1cb5ab76674b263a914ee (patch) (side-by-side diff) | |
tree | 643d13dbfa934a3017ccb6a27703fd7268d51035 | |
parent | 629ced22fc26892442be433403a9cfa9f662f08a (diff) | |
download | opie-77c2cf85d5cabcc754a1cb5ab76674b263a914ee.zip opie-77c2cf85d5cabcc754a1cb5ab76674b263a914ee.tar.gz opie-77c2cf85d5cabcc754a1cb5ab76674b263a914ee.tar.bz2 |
gcc 3.4 fixlet
-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 @@ -49,10 +49,10 @@ 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& ) { |