summaryrefslogtreecommitdiffstats
path: root/networkstatus/networkstatus.h
diff options
context:
space:
mode:
Diffstat (limited to 'networkstatus/networkstatus.h')
-rw-r--r--networkstatus/networkstatus.h34
1 files changed, 17 insertions, 17 deletions
diff --git a/networkstatus/networkstatus.h b/networkstatus/networkstatus.h
index b4281b96..710afd79 100644
--- a/networkstatus/networkstatus.h
+++ b/networkstatus/networkstatus.h
@@ -37,41 +37,41 @@ class NetworkStatusModule : virtual public KDEDModule/*, public ClientIface, Ser
Q_OBJECT
K_DCOP
public:
- NetworkStatusModule( const QCString & obj );
+ NetworkStatusModule( const TQCString & obj );
~NetworkStatusModule();
k_dcop:
// Client interface
- QStringList networks();
- int status( const QString & host );
- int request( const QString & host, bool userInitiated );
- void relinquish( const QString & host );
- bool reportFailure( const QString & host );
-// QString statusAsString();
+ TQStringList networks();
+ int status( const TQString & host );
+ int request( const TQString & host, bool userInitiated );
+ void relinquish( const TQString & host );
+ bool reportFailure( const TQString & host );
+// TQString statusAsString();
// Service interface
- void setNetworkStatus( const QString & networkName, int status );
- void registerNetwork( const QString & networkName, NetworkStatus::Properties properties );
- void unregisterNetwork( const QString & networkName );
- void requestShutdown( const QString & networkName );
+ void setNetworkStatus( const TQString & networkName, int status );
+ void registerNetwork( const TQString & networkName, NetworkStatus::Properties properties );
+ void unregisterNetwork( const TQString & networkName );
+ void requestShutdown( const TQString & networkName );
k_dcop_signals:
/**
* A status change occurred for the network(s) used to connect to the given host.
* @param host The host which the application has indicated it is using
* @param status The new status of the network used to reach host.
*/
- void statusChange( QString host, int status );
+ void statusChange( TQString host, int status );
/**
* The network would like to shut down - any clients using this host are to finish using it immediately and call
* relinquish() when done.
* @param host The host, registered as in use by applications, which is about to be disconnected.
*/
- void shutdownRequested( QString host );
+ void shutdownRequested( TQString host );
protected slots:
- void registeredToDCOP( const QCString& appId );
- void unregisteredFromDCOP( const QCString& appId );
+ void registeredToDCOP( const TQCString& appId );
+ void unregisteredFromDCOP( const TQCString& appId );
protected:
- // QStringList networkUsers( const QString & networkName );
- Network * networkForHost( const QString & host ) const;
+ // TQStringList networkUsers( const TQString & networkName );
+ Network * networkForHost( const TQString & host ) const;
private:
class Private;