summaryrefslogtreecommitdiffstats
path: root/knetworkconf/knetworkconf/knetworkinfo.h
diff options
context:
space:
mode:
Diffstat (limited to 'knetworkconf/knetworkconf/knetworkinfo.h')
-rw-r--r--knetworkconf/knetworkconf/knetworkinfo.h34
1 files changed, 17 insertions, 17 deletions
diff --git a/knetworkconf/knetworkconf/knetworkinfo.h b/knetworkconf/knetworkconf/knetworkinfo.h
index 7ae8b25..59c3dc0 100644
--- a/knetworkconf/knetworkconf/knetworkinfo.h
+++ b/knetworkconf/knetworkconf/knetworkinfo.h
@@ -18,8 +18,8 @@
#ifndef KNETWORKINFO_H
#define KNETWORKINFO_H
-#include <qstring.h>
-#include <qptrlist.h>
+#include <tqstring.h>
+#include <tqptrlist.h>
#include "knetworkinterface.h"
#include "kwirelessinterface.h"
#include "kaddressvalidator.h"
@@ -35,34 +35,34 @@ class KNetworkInfo {
KNetworkInfo();
~KNetworkInfo();
private: // Private attributes
- QPtrList<KNetworkInterface> deviceList;
+ TQPtrList<KNetworkInterface> deviceList;
KRoutingInfo *routingInfo;
/** Path to the network script that permits starting/stopping/reloading the
network. */
- QString networkScript;
+ TQString networkScript;
KDNSInfo *dnsInfo;
/** Platform name. */
- QString platformName;
- QPtrList<KNetworkInfo> profilesList;
- QString profileName;
+ TQString platformName;
+ TQPtrList<KNetworkInfo> profilesList;
+ TQString profileName;
public: // Public attributes
- void setDeviceList(QPtrList<KNetworkInterface> deviceList);
+ void setDeviceList(TQPtrList<KNetworkInterface> deviceList);
void setRoutingInfo(KRoutingInfo *routingInfo);
void setDNSInfo(KDNSInfo *dnsInfo);
- QPtrList<KNetworkInterface> getDeviceList();
+ TQPtrList<KNetworkInterface> getDeviceList();
KRoutingInfo *getRoutingInfo();
KDNSInfo *getDNSInfo();
- QString getNetworkScript();
- void setNetworkScript(QString script);
+ TQString getNetworkScript();
+ void setNetworkScript(TQString script);
/** Returns the platform name KnetworkConf is running on. */
- QString getPlatformName();
+ TQString getPlatformName();
/** Sets the platform name KNetworkConf is running on. */
- void setPlatformName(QString name);
- void setProfilesList(QPtrList<KNetworkInfo> profilesList);
- QPtrList<KNetworkInfo> getProfilesList();
- void setProfileName(QString profileName);
- QString getProfileName();
+ void setPlatformName(TQString name);
+ void setProfilesList(TQPtrList<KNetworkInfo> profilesList);
+ TQPtrList<KNetworkInfo> getProfilesList();
+ void setProfileName(TQString profileName);
+ TQString getProfileName();
};
#endif