summaryrefslogtreecommitdiffstats
path: root/knetworkconf/knetworkconf/knetworkinfo.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:25:18 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:25:18 +0000
commitaa3a1ca934bc541bddd3fa136a85f106f7da266e (patch)
tree9ad0b795aed8fa4ac30c2fe0fd1aacb8175714c0 /knetworkconf/knetworkconf/knetworkinfo.h
parentb10cf7066791a2f362495890cd50c984e8025412 (diff)
downloadtdeadmin-aa3a1ca934bc541bddd3fa136a85f106f7da266e.tar.gz
tdeadmin-aa3a1ca934bc541bddd3fa136a85f106f7da266e.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeadmin@1157635 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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