Changed order of country data and used short name of country. refs #300

This commit is contained in:
2017-05-30 19:56:11 +02:00
parent 1e785fd488
commit 44c916cb68
+1 -1
View File
@@ -89,5 +89,5 @@ bool CountryData::eq(ComboItem *other)
QString CountryData::toString()
{
return m_code3 + " - " + m_czechFullName;
return m_czechName + " (" + m_code3 + ")";
}