188 QVariantMap description2;
189 QString status_description;
190 QString status_color;
192 bool status_can_be_run;
196 QVariantMap toMap()
const Q_DECL_OVERRIDE;
198 static QList<TicketStatus> fromList(
const QVariantList&);
199 TicketStatus() :
Mutable() { status_closed =
false; status_can_be_run =
true; status_ignored =
false; }
200 TicketStatus(
const QVariant& x) :
Mutable(x) { status_closed =
false; status_can_be_run =
true; status_ignored =
false; }
204 Mutable::operator=(x);
207 description = x.description;
208 description2 = x.description2;
209 status_description = x.status_description;
210 status_color = x.status_color;
211 status_closed = x.status_closed;
212 status_can_be_run = x.status_can_be_run;
213 status_ignored = x.status_ignored;