NOISSUE rename ComponentList to PackProfile

It's not just components, so the naming needed cleaning up.
This commit is contained in:
Petr Mrázek
2020-06-27 12:02:31 +02:00
parent 4ca62916f5
commit a0ef20a264
29 changed files with 145 additions and 145 deletions

View File

@ -5,7 +5,7 @@
#include <QList>
#include "net/Mode.h"
class ComponentList;
class PackProfile;
struct RemoteLoadStatus
{
@ -15,7 +15,7 @@ struct RemoteLoadStatus
List,
Version
} type = Type::Version;
size_t componentListIndex = 0;
size_t PackProfileIndex = 0;
bool finished = false;
bool succeeded = false;
QString error;
@ -23,7 +23,7 @@ struct RemoteLoadStatus
struct ComponentUpdateTaskData
{
ComponentList * m_list = nullptr;
PackProfile * m_list = nullptr;
QList<RemoteLoadStatus> remoteLoadStatusList;
bool remoteLoadSuccessful = true;
size_t remoteTasksInProgress = 0;