X-Git-Url: https://gitweb.stoutner.com/?a=blobdiff_plain;f=src%2Fstructs%2FFilterListStruct.h;fp=src%2Fstructs%2FFilterListStruct.h;h=e21606857a19cb34cbc6e8e3984aaa79e912fc43;hb=be625d0fcb1f4e8184ed62a28d23629f8c246d8e;hp=ef560d1485aedb53a4bb82c2a8d06edf67b506e5;hpb=f8f8d907d0caa128abf73696f812f8e92db812b7;p=PrivacyBrowserPC.git diff --git a/src/structs/FilterListStruct.h b/src/structs/FilterListStruct.h index ef560d1..e216068 100644 --- a/src/structs/FilterListStruct.h +++ b/src/structs/FilterListStruct.h @@ -31,11 +31,15 @@ struct FilterListStruct { + // The strings. QString title; QString version; QString filePath; - std::forward_list mainAllowList; - std::forward_list mainBlockList; - std::forward_list initialDomainBlockList; + + // The filter lists. + std::forward_list *mainAllowListPointer = new std::forward_list; + std::forward_list *mainBlockListPointer = new std::forward_list; + std::forward_list *initialDomainBlockListPointer = new std::forward_list; + std::forward_list *regularExpressionBlockListPointer = new std::forward_list; }; #endif