diff options
Diffstat (limited to 'util/local_database')
-rw-r--r-- | util/local_database/enumdata.py | 3 | ||||
-rwxr-xr-x | util/local_database/qlocalexml2cpp.py | 5 |
2 files changed, 6 insertions, 2 deletions
diff --git a/util/local_database/enumdata.py b/util/local_database/enumdata.py index b742272..f6b145d 100644 --- a/util/local_database/enumdata.py +++ b/util/local_database/enumdata.py @@ -507,7 +507,8 @@ country_list = { 242 : [ "Montenegro", "ME" ], 243 : [ "Serbia", "RS" ], 244 : [ "Saint Barthelemy", "BL" ], - 245 : [ "Saint Martin", "MF" ] + 245 : [ "Saint Martin", "MF" ], + 246 : [ "LatinAmericaAndTheCaribbean", "419" ] } def countryCodeToId(code): diff --git a/util/local_database/qlocalexml2cpp.py b/util/local_database/qlocalexml2cpp.py index da2da32..b6523af 100755 --- a/util/local_database/qlocalexml2cpp.py +++ b/util/local_database/qlocalexml2cpp.py @@ -549,7 +549,10 @@ def main(): # Country code list print "static const unsigned char country_code_list[] =" for key in country_map.keys(): - print "\"%2s\" // %s" % (country_map[key][1], country_map[key][0]) + code = country_map[key][1] + if len(code) == 2: + code += "\\0" + print "\"%2s\" // %s" % (code, country_map[key][0]) print ";" |