mirror of
https://github.com/parchlinux/calamares.git
synced 2025-06-27 09:25:36 -04:00
[libcalamares] Use more readable names
This commit is contained in:
parent
e2c6591a77
commit
a1b0049bbf
1 changed files with 6 additions and 3 deletions
|
@ -80,10 +80,13 @@ struct RequestStatus
|
|||
Empty // for ping(), response is empty
|
||||
};
|
||||
|
||||
RequestStatus( State s = Ok );
|
||||
operator bool() const { return m_s == Ok; }
|
||||
RequestStatus( State s = Ok )
|
||||
: status( s )
|
||||
{
|
||||
}
|
||||
operator bool() const { return status == Ok; }
|
||||
|
||||
State m_s;
|
||||
State status;
|
||||
};
|
||||
|
||||
class DLLEXPORT Manager : QObject
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue