|
|
@ -37,12 +37,13 @@ struct ValueCheck : public QPair<QString, CalamaresUtils::CommandList*>
|
|
|
|
{
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
~ValueCheck()
|
|
|
|
// ~ValueCheck()
|
|
|
|
{
|
|
|
|
//
|
|
|
|
// We don't own the commandlist, the binding holding this valuecheck
|
|
|
|
// There is no destructor.
|
|
|
|
// does, so don't delete. This is closely tied to (temporaries created
|
|
|
|
//
|
|
|
|
// by) pass-by-value in QList::append().
|
|
|
|
// We don't own the commandlist, the binding holding this valuecheck
|
|
|
|
}
|
|
|
|
// does, so don't delete. This is closely tied to (temporaries created
|
|
|
|
|
|
|
|
// by) pass-by-value in QList::append().
|
|
|
|
|
|
|
|
|
|
|
|
QString value() const { return first; }
|
|
|
|
QString value() const { return first; }
|
|
|
|
CalamaresUtils::CommandList* commands() const { return second; }
|
|
|
|
CalamaresUtils::CommandList* commands() const { return second; }
|
|
|
|