I have the following situation:
QDate fixDate = QDate::fromString(QString(\"270912\"), \"ddMMyy\");
the year returned is 1912.
1912
Two-digit year is always interpretating as 19xx. So You can pass YYYY or just add 100 to years.
19xx
YYYY
100