In QDate doc we can read Note that QDate interprets two digit years as is, i.e., years 0 - 99. But this is not true. Yes QDate(11,3,23) constructs object with values year=11, month=3 and day=23. But QDate::fromString("11-03-23","yy-MM-dd") creates object with year=1911.
How can I change this behaviour if possible ?