From d619f66af0df2e6f9a1cb0a41f17e98e1f48d309 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Tue, 20 Jun 2023 08:48:50 +0900 Subject: Drop Qt2's TQSortedList class Signed-off-by: Michele Calgaro --- kmtrace/kmtrace.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'kmtrace/kmtrace.cpp') 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 #include #include -#include +#include #include #include #include @@ -54,7 +54,7 @@ struct Entry { TQIntDict *entryDict = 0; TQIntDict *symbolDict = 0; TQIntDict *formatDict = 0; -TQSortedList *entryList = 0; +TQPtrList *entryList = 0; TQStrList *excludes = 0; const char * const unknown = ""; @@ -622,7 +622,7 @@ int main(int argc, char *argv[]) entryDict = new TQIntDict(9973); symbolDict = new TQIntDict(9973); formatDict = new TQIntDict(9973); - entryList = new TQSortedList; + entryList = new TQPtrList; fprintf(stderr, "Running\n"); TQCString line; -- cgit v1.2.3