author | mickeyl <mickeyl> | 2004-04-24 16:44:28 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2004-04-24 16:44:28 (UTC) |
commit | 77c2cf85d5cabcc754a1cb5ab76674b263a914ee (patch) (unidiff) | |
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 | |||
@@ -50,8 +50,8 @@ QList<Interface> VirtualModule::getInterfaces() { | |||
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 | ||