diff options
Diffstat (limited to 'sip/qt/qstrlist.sip')
-rw-r--r-- | sip/qt/qstrlist.sip | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/sip/qt/qstrlist.sip b/sip/qt/qstrlist.sip index 189e134..6d31cf9 100644 --- a/sip/qt/qstrlist.sip +++ b/sip/qt/qstrlist.sip @@ -1,29 +1,29 @@ -// This is the SIP interface definition for QStrList. +// This is the SIP interface definition for TQStrList. // // Copyright (c) 2007 // Riverbank Computing Limited <info@riverbankcomputing.co.uk> // -// This file is part of PyQt. +// This file is part of PyTQt. // -// This copy of PyQt is free software; you can redistribute it and/or modify it +// This copy of PyTQt is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free // Software Foundation; either version 2, or (at your option) any later // version. // -// PyQt is supplied in the hope that it will be useful, but WITHOUT ANY +// PyTQt is supplied in the hope that it will be useful, but WITHOUT ANY // WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // FOR A PARTICULAR PURPOSE. See the GNU General Public License for more // details. // // You should have received a copy of the GNU General Public License along with -// PyQt; see the file LICENSE. If not, write to the Free Software Foundation, +// PyTQt; see the file LICENSE. If not, write to the Free Software Foundation, // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. %ExportedDoc -<Sect2><Title>QStrList</Title> +<Sect2><Title>TQStrList</Title> <Para> -This class isn't implemented. Whenever a <Literal>QStrList</Literal> is the +This class isn't implemented. Whenever a <Literal>TQStrList</Literal> is the return type of a function or the type of an argument, a Python list of strings is used instead. </Para> @@ -31,7 +31,7 @@ is used instead. %End -%MappedType QStrList +%MappedType TQStrList { %TypeHeaderCode #include <qstrlist.h> @@ -71,12 +71,12 @@ is used instead. %End %ConvertToTypeCode - // Convert a Python list of strings to a QStrList on the heap. + // Convert a Python list of strings to a TQStrList on the heap. if (sipIsErr == NULL) return PyList_Check(sipPy); - QStrList *qsl = new QStrList; + TQStrList *qsl = new TQStrList; for (int i = 0; i < PyList_GET_SIZE(sipPy); ++i) { |