From 638c838e6fc83fba322503f995648be1fae3dfbd Mon Sep 17 00:00:00 2001 From: itayc0hen Date: Fri, 20 Mar 2020 20:14:12 +0200 Subject: [PATCH] Use cmdRaw and cmdRawAt in TypesWidget --- src/widgets/TypesWidget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/widgets/TypesWidget.cpp b/src/widgets/TypesWidget.cpp index 11f2c7ad..4243d9b8 100644 --- a/src/widgets/TypesWidget.cpp +++ b/src/widgets/TypesWidget.cpp @@ -273,7 +273,7 @@ void TypesWidget::on_actionExport_Types_triggered() return; } QTextStream fileOut(&file); - fileOut << Core()->cmd("tc"); + fileOut << Core()->cmdRaw("tc"); file.close(); }