summaryrefslogtreecommitdiffstats
path: root/knetworkconf/knetworkconf/kknownhostinfo.h
diff options
context:
space:
mode:
Diffstat (limited to 'knetworkconf/knetworkconf/kknownhostinfo.h')
-rw-r--r--knetworkconf/knetworkconf/kknownhostinfo.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/knetworkconf/knetworkconf/kknownhostinfo.h b/knetworkconf/knetworkconf/kknownhostinfo.h
index 584639e..1023f59 100644
--- a/knetworkconf/knetworkconf/kknownhostinfo.h
+++ b/knetworkconf/knetworkconf/kknownhostinfo.h
@@ -18,8 +18,8 @@
#ifndef KKNOWNHOSTINFO_H
#define KKNOWNHOSTINFO_H
-#include <qstring.h>
-#include <qstringlist.h>
+#include <tqstring.h>
+#include <tqstringlist.h>
/**Class that represents an entry in the /etc/hosts file.
*@author Juan Luis Baptiste
@@ -29,16 +29,16 @@ class KKnownHostInfo {
public:
KKnownHostInfo();
~KKnownHostInfo();
- QStringList getAliases();
- QString getIpAddress();
- void setAliases(QStringList aliases);
- void addAlias(QString alias);
- void setIpAddress(QString ipAddress);
+ TQStringList getAliases();
+ TQString getIpAddress();
+ void setAliases(TQStringList aliases);
+ void addAlias(TQString alias);
+ void setIpAddress(TQString ipAddress);
private: // Private attributes
/** IP address of the known Host. */
- QString ipAddress;
+ TQString ipAddress;
/** Lists of aliases of the known host. */
- QStringList aliases;
+ TQStringList aliases;
};
#endif