From 08cf71cb0265bac3398eef73025ffde8ec427549 Mon Sep 17 00:00:00 2001 From: njohnson Date: Wed, 10 Sep 2025 21:55:45 -0400 Subject: [PATCH] Fix: Rename QDataStream to XDataStream in ParseData The `ParseData` method was incorrectly using `QDataStream` instead of `XDataStream`. This commit changes the type from `QDataStream` to `XDataStream` to align with the project's data stream implementation. --- libs/xassets/xanimdeltapartquat.h | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/libs/xassets/xanimdeltapartquat.h b/libs/xassets/xanimdeltapartquat.h index 1c2731e..9feb50b 100644 --- a/libs/xassets/xanimdeltapartquat.h +++ b/libs/xassets/xanimdeltapartquat.h @@ -1,9 +1,3 @@ - - - - - - #ifndef XANIMDELTAPARTQUAT_H #define XANIMDELTAPARTQUAT_H @@ -14,8 +8,9 @@ class XAnimDeltaPartQuat : public XAsset { public: explicit XAnimDeltaPartQuat(); + ~XAnimDeltaPartQuat() = default; - void ParseData(QDataStream *aStream) override; + void ParseData(XDataStream *aStream) override; quint32 GetSize() const; void SetSize(quint32 size); @@ -29,8 +24,3 @@ private: }; #endif // XANIMDELTAPARTQUAT_H - - - - -