diff --git a/KomplexHubPlugin/common/fetchresult.h b/KomplexHubPlugin/common/fetchresult.h index 095085a..29c88cd 100644 --- a/KomplexHubPlugin/common/fetchresult.h +++ b/KomplexHubPlugin/common/fetchresult.h @@ -41,6 +41,13 @@ struct FetchResult * Results list */ QList data; + + auto operator=(const FetchResult &other) -> FetchResult + { + total = other.total; + count = other.count; + data = other.data; + } }; #endif // FETCHRESULT_H