diff options
Diffstat (limited to 'dcoppython/shell/pcop.h')
-rw-r--r-- | dcoppython/shell/pcop.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/dcoppython/shell/pcop.h b/dcoppython/shell/pcop.h index 35beef1c..f1ce9c2b 100644 --- a/dcoppython/shell/pcop.h +++ b/dcoppython/shell/pcop.h @@ -41,7 +41,7 @@ namespace PythonDCOP { // helpers... void delete_dcop_object(void *vp); - PyObject *make_py_list(const TQCStringList &qt_list); + PyObject *make_py_list(const QCStringList &qt_list); /** * Used by the Python interface to talk to DCOP @@ -90,7 +90,7 @@ namespace PythonDCOP { /** * Return list of supported functions (methods). */ - virtual TQCStringList functions(); + virtual QCStringList functions(); /** * Set the list of methods that this object handles. @@ -188,12 +188,12 @@ namespace PythonDCOP { class PCOPClass { public: - PCOPClass( const TQCStringList& dcop_style_methods); + PCOPClass( const QCStringList& dcop_style_methods); ~PCOPClass(); const PCOPMethod* method( const TQCString &name, PyObject *argTuple = 0 ); - TQCStringList m_ifaces; + QCStringList m_ifaces; TQAsciiDict<PCOPMethod> m_methods; }; |