From 44c916cb6803ecaa1524e21e96d16711d0335342 Mon Sep 17 00:00:00 2001 From: Zdenek Jonak Date: Tue, 30 May 2017 19:56:11 +0200 Subject: [PATCH] Changed order of country data and used short name of country. refs #300 --- countryregister/data/countrydata.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/countryregister/data/countrydata.cpp b/countryregister/data/countrydata.cpp index b47cd92..147b92d 100644 --- a/countryregister/data/countrydata.cpp +++ b/countryregister/data/countrydata.cpp @@ -89,5 +89,5 @@ bool CountryData::eq(ComboItem *other) QString CountryData::toString() { - return m_code3 + " - " + m_czechFullName; + return m_czechName + " (" + m_code3 + ")"; }