diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2018-10-17 23:25:50 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2018-10-17 23:25:50 +0900 |
commit | eced9c9ff85b1d0edd0577b21f30b69188dd961b (patch) | |
tree | 4b53a10a366d60e6986e287125a5aeb337cc3e7f /dcoppython/shell | |
parent | 5dba7cef0aec034ce61df1516a305723480b86ca (diff) | |
download | tdebindings-eced9c9ff85b1d0edd0577b21f30b69188dd961b.tar.gz tdebindings-eced9c9ff85b1d0edd0577b21f30b69188dd961b.zip |
Removed obsolete Qt2's TQList/TQListIterator classes and replaced
with TQt3's TQPtrList/TQPtrListIterator ones.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'dcoppython/shell')
-rw-r--r-- | dcoppython/shell/pcop.cpp | 2 | ||||
-rw-r--r-- | dcoppython/shell/pcop.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/dcoppython/shell/pcop.cpp b/dcoppython/shell/pcop.cpp index c264f954..19557a14 100644 --- a/dcoppython/shell/pcop.cpp +++ b/dcoppython/shell/pcop.cpp @@ -335,7 +335,7 @@ namespace PythonDCOP { m_signature = m_name; m_signature += "("; - TQListIterator<PCOPType> it( m_params ); + TQPtrListIterator<PCOPType> it( m_params ); for( ; it.current(); ++it ) { if ( !it.atFirst() ) diff --git a/dcoppython/shell/pcop.h b/dcoppython/shell/pcop.h index f1ce9c2b..0208d44a 100644 --- a/dcoppython/shell/pcop.h +++ b/dcoppython/shell/pcop.h @@ -177,7 +177,7 @@ namespace PythonDCOP { TQCString m_signature; TQCString m_name; PCOPType* m_type; - TQList<PCOPType> m_params; + TQPtrList<PCOPType> m_params; private: PyObject *m_py_method; }; |