From 070854b8881b94eaa969bdf7e3a0e090a289c2c9 Mon Sep 17 00:00:00 2001 From: = Date: Sat, 11 Jan 2025 10:31:57 -0500 Subject: [PATCH] Refactor and fix. --- mainwindow.cpp | 2 +- mainwindow.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index 77ddba3..57c62af 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -1322,7 +1322,7 @@ void MainWindow::ParseZoneFile(QByteArray aDecompressedData) { // ParseAsset_RawFile(&zoneFileStream); RawFile rawFile = RawFile(); zoneFileStream >> rawFile; - mRawFilesVec >> rawFile; + mRawFilesVec << rawFile; } else if (typeStr == "STRING TABLE") { // string_table ParseAsset_StringTable(&zoneFileStream); } else { diff --git a/mainwindow.h b/mainwindow.h index 25ec57f..f580fc4 100644 --- a/mainwindow.h +++ b/mainwindow.h @@ -22,7 +22,7 @@ #include #include #include -#include > +#include #include