diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-06-19 12:08:38 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-06-19 12:08:38 +0900 |
commit | fc06df3386aadde97693e8f0062d25d3b49afc7a (patch) | |
tree | cba0ca8891aaee64184209b331ffde49dcd94f2c | |
parent | cbfe634f614403262ef544a641e1440126ea2e97 (diff) | |
download | kbarcode-fc06df3386aadde97693e8f0062d25d3b49afc7a.tar.gz kbarcode-fc06df3386aadde97693e8f0062d25d3b49afc7a.zip |
Drop Qt2's TQSortedList class
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r-- | kbarcode/documentitem.h | 4 | ||||
-rw-r--r-- | kbarcode/xmlutils.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/kbarcode/documentitem.h b/kbarcode/documentitem.h index d1891b1..9255266 100644 --- a/kbarcode/documentitem.h +++ b/kbarcode/documentitem.h @@ -20,7 +20,7 @@ #include <xmlutils.h> #include <tqobject.h> -#include <tqsortedlist.h> +#include <tqptrlist.h> #include <tqstring.h> #include <tqtextstream.h> @@ -224,7 +224,7 @@ const TQString DocumentItem::visibilityScript() const return m_visibilityScript; } -typedef TQSortedList<DocumentItem> DocumentItemList; +typedef TQPtrList<DocumentItem> DocumentItemList; #endif //DOCUMENTITEM_H diff --git a/kbarcode/xmlutils.h b/kbarcode/xmlutils.h index 4851baa..1a4c9b6 100644 --- a/kbarcode/xmlutils.h +++ b/kbarcode/xmlutils.h @@ -19,7 +19,7 @@ #define XMLUTILS_H #include <tqmap.h> -#include <tqsortedlist.h> +#include <tqptrlist.h> class DocumentItem; class BarcodeItem; @@ -34,7 +34,7 @@ class TQDomNode; class TQRect; class TQString; class TQWidget; -typedef TQSortedList<DocumentItem> DocumentItemList; +typedef TQPtrList<DocumentItem> DocumentItemList; /** This class provides helper function for saving and reading to XML files. * |