summaryrefslogtreecommitdiffstats
path: root/src/networkinterface.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-16 09:57:26 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-16 09:57:26 -0600
commit392b293dfeaa3e4241e50b833126d0c2d598761d (patch)
tree2e113362b942a9339c055661efd21cdb626e5e1d /src/networkinterface.cpp
parent1d9c18c8a07f4833695c6a2ab978698ae1cc90e7 (diff)
downloadkvpnc-392b293dfeaa3e4241e50b833126d0c2d598761d.tar.gz
kvpnc-392b293dfeaa3e4241e50b833126d0c2d598761d.zip
Revert "Rename a number of old tq methods that are no longer tq specific"
This reverts commit 1d9c18c8a07f4833695c6a2ab978698ae1cc90e7.
Diffstat (limited to 'src/networkinterface.cpp')
-rw-r--r--src/networkinterface.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/networkinterface.cpp b/src/networkinterface.cpp
index dc5d057..cddd016 100644
--- a/src/networkinterface.cpp
+++ b/src/networkinterface.cpp
@@ -21,7 +21,7 @@
#include "networkinterface.h"
#include <iostream>
#include <tqfile.h>
-#include <textstream.h>
+#include <tqtextstream.h>
#include <kmessagebox.h>
#include <klocale.h>
#include <kglobal.h>
@@ -159,7 +159,7 @@ TQString NetworkInterface::getInterfaceIP2( TQString Interface )
if ( !InterfaceIpProc->start(env) )
{
- GlobalConfig->appendLogEntry(i18n("unable to start proc (%1)!").arg(i18n("getting IP address from interface")), KVpncConfig::error);
+ GlobalConfig->appendLogEntry(i18n("unable to start proc (%1)!").tqarg(i18n("getting IP address from interface")), KVpncConfig::error);
}
else
{
@@ -219,7 +219,7 @@ TQString NetworkInterface::getInterfaceAddress( TQString IPforInterface )
if ( !InterfaceAddressProc->start(env) )
{
- GlobalConfig->appendLogEntry(i18n("unable to start proc (%1)!").arg(i18n("script for get interface from IP address")), KVpncConfig::error);
+ GlobalConfig->appendLogEntry(i18n("unable to start proc (%1)!").tqarg(i18n("script for get interface from IP address")), KVpncConfig::error);
}
else