mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-14 02:27:09 -07:00
Pass TriStateBool by value
This commit is contained in:
parent
640f52c05f
commit
b55403ce66
2 changed files with 6 additions and 6 deletions
|
@ -62,7 +62,7 @@ namespace
|
|||
return TriStateBool::Undefined;
|
||||
}
|
||||
|
||||
QJsonValue triStateBoolToJsonValue(const TriStateBool &triStateBool)
|
||||
QJsonValue triStateBoolToJsonValue(const TriStateBool triStateBool)
|
||||
{
|
||||
switch (static_cast<signed char>(triStateBool)) {
|
||||
case 0: return false;
|
||||
|
@ -80,7 +80,7 @@ namespace
|
|||
}
|
||||
}
|
||||
|
||||
int triStateBoolToAddPausedLegacy(const TriStateBool &triStateBool)
|
||||
int triStateBoolToAddPausedLegacy(const TriStateBool triStateBool)
|
||||
{
|
||||
switch (static_cast<signed char>(triStateBool)) {
|
||||
case 0: return 2; // never
|
||||
|
@ -584,7 +584,7 @@ TriStateBool AutoDownloadRule::addPaused() const
|
|||
return m_dataPtr->addPaused;
|
||||
}
|
||||
|
||||
void AutoDownloadRule::setAddPaused(const TriStateBool &addPaused)
|
||||
void AutoDownloadRule::setAddPaused(const TriStateBool addPaused)
|
||||
{
|
||||
m_dataPtr->addPaused = addPaused;
|
||||
}
|
||||
|
@ -594,7 +594,7 @@ TriStateBool AutoDownloadRule::createSubfolder() const
|
|||
return m_dataPtr->createSubfolder;
|
||||
}
|
||||
|
||||
void AutoDownloadRule::setCreateSubfolder(const TriStateBool &createSubfolder)
|
||||
void AutoDownloadRule::setCreateSubfolder(const TriStateBool createSubfolder)
|
||||
{
|
||||
m_dataPtr->createSubfolder = createSubfolder;
|
||||
}
|
||||
|
|
|
@ -78,9 +78,9 @@ namespace RSS
|
|||
QString savePath() const;
|
||||
void setSavePath(const QString &savePath);
|
||||
TriStateBool addPaused() const;
|
||||
void setAddPaused(const TriStateBool &addPaused);
|
||||
void setAddPaused(TriStateBool addPaused);
|
||||
TriStateBool createSubfolder() const;
|
||||
void setCreateSubfolder(const TriStateBool &createSubfolder);
|
||||
void setCreateSubfolder(TriStateBool createSubfolder);
|
||||
QString assignedCategory() const;
|
||||
void setCategory(const QString &category);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue