Details
-
Suggestion
-
Resolution: Unresolved
-
P3: Somewhat important
-
None
-
None
-
None
Description
In QVersionNumber exist Getters for Major, Minor and Micro:
int majorVersion()
int minorVersion()
int microVersion()
but there are no separated Setters for these values, it is only possible to set all together, e.g. from static fromString
void setMajorVersion(int newMajor);
void setMinorVersion(int newMinor);
void setMicroVersion(int newMicro);
It would be very helpful if these Setters will be added in the future.