summaryrefslogtreecommitdiffstats
path: root/kpf/src/KPFInterface.h
diff options
context:
space:
mode:
Diffstat (limited to 'kpf/src/KPFInterface.h')
-rw-r--r--kpf/src/KPFInterface.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/kpf/src/KPFInterface.h b/kpf/src/KPFInterface.h
index facd482c..a4d54f02 100644
--- a/kpf/src/KPFInterface.h
+++ b/kpf/src/KPFInterface.h
@@ -45,23 +45,23 @@ class KPFInterface : virtual public DCOPObject
/**
* @return list of root directories used by WebServer objects.
*/
- virtual QStringList serverRootList();
+ virtual TQStringList serverRootList();
virtual bool createServer
(
- QString root,
+ TQString root,
uint port,
uint bandwidthLimit = KPF::Config::DefaultBandwidthLimit,
uint connectionLimit = KPF::Config::DefaultConnectionLimit,
bool followSymlinks = KPF::Config::DefaultFollowSymlinks
);
- virtual bool disableServer (QString root);
- virtual bool restartServer (QString root);
- virtual bool reconfigureServer (QString root);
- virtual bool pauseServer (QString root);
- virtual bool unpauseServer (QString root);
- virtual bool serverPaused (QString root);
+ virtual bool disableServer (TQString root);
+ virtual bool restartServer (TQString root);
+ virtual bool reconfigureServer (TQString root);
+ virtual bool pauseServer (TQString root);
+ virtual bool unpauseServer (TQString root);
+ virtual bool serverPaused (TQString root);
};
#endif