diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-06-20 08:48:50 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-06-20 08:48:50 +0900 |
commit | d619f66af0df2e6f9a1cb0a41f17e98e1f48d309 (patch) | |
tree | df4d1aea13f2042c515bdaa81f1a84d8d3a3dfb0 | |
parent | 7c1c8b9759e1beeee46f19650ca8c51fd8bc8f22 (diff) | |
download | tdesdk-d619f66af0df2e6f9a1cb0a41f17e98e1f48d309.tar.gz tdesdk-d619f66af0df2e6f9a1cb0a41f17e98e1f48d309.zip |
Drop Qt2's TQSortedList class
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r-- | kmtrace/demangle.cpp | 2 | ||||
-rw-r--r-- | kmtrace/kmtrace.cpp | 6 | ||||
-rw-r--r-- | kmtrace/match.cpp | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/kmtrace/demangle.cpp b/kmtrace/demangle.cpp index 52d71863..d552137c 100644 --- a/kmtrace/demangle.cpp +++ b/kmtrace/demangle.cpp @@ -3,7 +3,7 @@ #include <tqstringlist.h> #include <tqstrlist.h> #include <tqtextstream.h> -#include <tqsortedlist.h> +#include <tqptrlist.h> #include <tqfile.h> #include <tqtl.h> #include <tqvaluelist.h> diff --git a/kmtrace/kmtrace.cpp b/kmtrace/kmtrace.cpp index 9e5007fe..6e30b01c 100644 --- a/kmtrace/kmtrace.cpp +++ b/kmtrace/kmtrace.cpp @@ -6,7 +6,7 @@ #include <tqstringlist.h> #include <tqstrlist.h> #include <tqtextstream.h> -#include <tqsortedlist.h> +#include <tqptrlist.h> #include <tqfile.h> #include <tqtl.h> #include <tqvaluelist.h> @@ -54,7 +54,7 @@ struct Entry { TQIntDict<Entry> *entryDict = 0; TQIntDict<char> *symbolDict = 0; TQIntDict<char> *formatDict = 0; -TQSortedList<Entry> *entryList = 0; +TQPtrList<Entry> *entryList = 0; TQStrList *excludes = 0; const char * const unknown = "<unknown>"; @@ -622,7 +622,7 @@ int main(int argc, char *argv[]) entryDict = new TQIntDict<Entry>(9973); symbolDict = new TQIntDict<char>(9973); formatDict = new TQIntDict<char>(9973); - entryList = new TQSortedList<Entry>; + entryList = new TQPtrList<Entry>; fprintf(stderr, "Running\n"); TQCString line; diff --git a/kmtrace/match.cpp b/kmtrace/match.cpp index ac04f290..eebcaf0a 100644 --- a/kmtrace/match.cpp +++ b/kmtrace/match.cpp @@ -3,7 +3,7 @@ #include <tqstringlist.h> #include <tqstrlist.h> #include <tqtextstream.h> -#include <tqsortedlist.h> +#include <tqptrlist.h> #include <tqfile.h> #include <tqtl.h> #include <tqvaluelist.h> |