summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2020-05-25 00:29:20 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2020-05-25 00:29:20 +0900
commit0873dcc7738ce52369c0ff7b25c932029b6f2218 (patch)
tree9dc65e1f64ca1537d00f49f726b4013990234f1a
parent4e1cf23949296ddf97cfabee3db7794817e49e0f (diff)
downloadkscope-0873dcc7738ce52369c0ff7b25c932029b6f2218.tar.gz
kscope-0873dcc7738ce52369c0ff7b25c932029b6f2218.zip
Removed obsolete Qt2's TQStack class and replaced with TQt3's TQPtrStack.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r--src/dotparse.ypp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dotparse.ypp b/src/dotparse.ypp
index f8e8960..37b501d 100644
--- a/src/dotparse.ypp
+++ b/src/dotparse.ypp
@@ -15,7 +15,7 @@ void yyinit(CallTreeDlg*, FILE*, Encoder*);
void yyerror(const char*);
static TQMap<TQString, TQString> s_pMapAttr;
-static TQStack<TQListViewItem> s_pParentStack;
+static TQPtrStack<TQListViewItem> s_pParentStack;
static TQListView* s_pTree;
static GraphWidget* s_pGraph;