From 3ca10fd9a2dc631429d3b5d5c5e42a7d211d5a12 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Thu, 15 Dec 2011 15:50:21 -0600 Subject: Rename a number of old tq methods that are no longer tq specific --- libemailfunctions/networkstatus.h | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'libemailfunctions/networkstatus.h') diff --git a/libemailfunctions/networkstatus.h b/libemailfunctions/networkstatus.h index 963aa6fed..7a8b3c1b2 100644 --- a/libemailfunctions/networkstatus.h +++ b/libemailfunctions/networkstatus.h @@ -32,7 +32,7 @@ namespace KPIM { the machine KDE is running on going from "online" mode to offline. What this means is left as an exercise for the reader. */ -class NetworktqStatus : public TQObject, public DCOPObject +class NetworkStatus : public TQObject, public DCOPObject { Q_OBJECT @@ -40,7 +40,7 @@ class NetworktqStatus : public TQObject, public DCOPObject /** * The possible states. */ - enum tqStatus { + enum Status { Online, //< The machine now has internet connectivity Offline //< The machine has no internet connectivity }; @@ -48,24 +48,24 @@ class NetworktqStatus : public TQObject, public DCOPObject /** * Destructor. */ - ~NetworktqStatus(); + ~NetworkStatus(); /** * Returns the only instance of this class. */ - static NetworktqStatus *self(); + static NetworkStatus *self(); /** * Sets a new status. * * @param status The new status. */ - void setqStatus( tqStatus status ); + void seStatus( Status status ); /** * Returns the current status. */ - tqStatus status() const; + Status status() const; k_dcop: /** @@ -79,18 +79,18 @@ class NetworktqStatus : public TQObject, public DCOPObject * * @param status The new status. */ - void statusChanged( tqStatus status ); + void statusChanged( Status status ); protected: /** * Constructor. This is protected, so you must use self() * to get the singleton object of this class. */ - NetworktqStatus(); + NetworkStatus(); private: - tqStatus mtqStatus; - static NetworktqStatus *mSelf; + Status mStatus; + static NetworkStatus *mSelf; }; } -- cgit v1.2.1