summaryrefslogtreecommitdiffstats
path: root/knetworkconf
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-01 13:27:47 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-01 13:27:47 -0600
commitb35bfd30d1aaf07ddfd0cbe31ffa8178df803e1c (patch)
treec479690a418e11411180489ea9b5daf2f456b449 /knetworkconf
parent280c7b07269f24c6c79f6b78f255631dcb920f1b (diff)
downloadtdeadmin-b35bfd30d1aaf07ddfd0cbe31ffa8178df803e1c.tar.gz
tdeadmin-b35bfd30d1aaf07ddfd0cbe31ffa8178df803e1c.zip
Rename additional global TQt functions
Diffstat (limited to 'knetworkconf')
-rw-r--r--knetworkconf/knetworkconf/knetworkconf.cpp4
-rw-r--r--knetworkconf/knetworkconf/knetworkconfigparser.cpp10
2 files changed, 7 insertions, 7 deletions
diff --git a/knetworkconf/knetworkconf/knetworkconf.cpp b/knetworkconf/knetworkconf/knetworkconf.cpp
index 083bfe1..f0df35d 100644
--- a/knetworkconf/knetworkconf/knetworkconf.cpp
+++ b/knetworkconf/knetworkconf/knetworkconf.cpp
@@ -500,7 +500,7 @@ void KNetworkConf::aboutSlot(){
KAboutApplication *about = new KAboutApplication(kapp->aboutData(),0);
// about->setLogo(locate("icon","knetworkconf.png"));
- //qDebug("locate icon= %s",locate("icon","knetworkconf.png").latin1());
+ //tqDebug("locate icon= %s",locate("icon","knetworkconf.png").latin1());
about->show();
}
@@ -1159,7 +1159,7 @@ void KNetworkConf::updateProfileSlot()
TQString profileName = profileToUpdate->getProfileName();
if (profileName == selectedProfile)
{
- qDebug("profile updated");
+ tqDebug("profile updated");
newProfile->setProfileName(profileName);
newProfile->setDNSInfo(netInfo->getDNSInfo());
newProfile->setDeviceList(netInfo->getDeviceList());
diff --git a/knetworkconf/knetworkconf/knetworkconfigparser.cpp b/knetworkconf/knetworkconf/knetworkconfigparser.cpp
index 5f4d44e..58583d2 100644
--- a/knetworkconf/knetworkconf/knetworkconfigparser.cpp
+++ b/knetworkconf/knetworkconf/knetworkconfigparser.cpp
@@ -103,7 +103,7 @@ void KNetworkConfigParser::readListIfacesSlot(){
//The gst backend puts a \n at the beginning of the xml output, so
//we have to erase it first before we parse it.
xmlOuput = xmlOuput.section('\n',1);
- qDebug("XML -d list_ifaces: %s",xmlOuput.latin1());
+ tqDebug("XML -d list_ifaces: %s",xmlOuput.latin1());
TQString err;
int x,y;
TQDomDocument doc( "network-ifaces");
@@ -112,7 +112,7 @@ void KNetworkConfigParser::readListIfacesSlot(){
KMessageBox::error(0,
i18n("Could not parse the XML output from the network configuration backend."),
i18n("Error While Listing Network Interfaces"));
-// qDebug("error: %s %d,%d",err.latin1(),x,y);
+// tqDebug("error: %s %d,%d",err.latin1(),x,y);
}
TQDomElement root = doc.documentElement();
TQDomNode node = root.firstChild();
@@ -287,7 +287,7 @@ void KNetworkConfigParser::saveNetworkInfo(KNetworkInfo *networkInfo)
doc.appendChild( endComment );
TQString xml = doc.toString();
- qDebug("--set XML:\n%s",xml.latin1());
+ tqDebug("--set XML:\n%s",xml.latin1());
procSaveNetworkInfo = new TQProcess(this);
procSaveNetworkInfo->addArgument( locate("data",BACKEND_PATH) );
@@ -816,7 +816,7 @@ void KNetworkConfigParser::readNetworkInfo()
//The gst backend puts a \n at the beginning of the xml output, so
//we have to erase it first before we can parse it.
xmlOuput = xmlOuput.section('\n',1);
- qDebug("--get XML:\n%s",xmlOuput.latin1());
+ tqDebug("--get XML:\n%s",xmlOuput.latin1());
//If the platform where knetworkconf is running isn't supported, show the
//user a dialog with all the supported platforms to choose.
@@ -836,7 +836,7 @@ void KNetworkConfigParser::readNetworkInfo()
KMessageBox::error(0,
i18n("Could not parse the XML output from the network configuration backend."),
i18n("Error Loading The Network Configuration"));
-// qDebug("error: %s %d,%d",err.latin1(),x,y);
+// tqDebug("error: %s %d,%d",err.latin1(),x,y);
}
TQDomElement root = doc.documentElement();