[libcalamares] Use more readable names

This commit is contained in:
Adriaan de Groot 2019-08-26 15:41:30 +02:00
parent e2c6591a77
commit a1b0049bbf

View File

@ -80,10 +80,13 @@ struct RequestStatus
Empty // for ping(), response is empty Empty // for ping(), response is empty
}; };
RequestStatus( State s = Ok ); RequestStatus( State s = Ok )
operator bool() const { return m_s == Ok; } : status( s )
{
}
operator bool() const { return status == Ok; }
State m_s; State status;
}; };
class DLLEXPORT Manager : QObject class DLLEXPORT Manager : QObject