From f7a00c58d2824f49ecaafc0152fc0b8213772e46 Mon Sep 17 00:00:00 2001 From: saturneric Date: Fri, 13 Dec 2024 16:22:33 +0100 Subject: refactor: using qt containers instead of std containers --- src/core/model/DataObject.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/core/model/DataObject.cpp') diff --git a/src/core/model/DataObject.cpp b/src/core/model/DataObject.cpp index 2819065d..13838941 100644 --- a/src/core/model/DataObject.cpp +++ b/src/core/model/DataObject.cpp @@ -28,7 +28,7 @@ #include "DataObject.h" -#include +#include "core/typedef/CoreTypedef.h" namespace GpgFrontend { @@ -50,7 +50,7 @@ class DataObject::Impl { auto GetObjectSize() -> size_t { return params_.size(); } private: - std::vector params_; + QContainer params_; }; DataObject::DataObject() : p_(SecureCreateUniqueObject()) {} -- cgit v1.2.3