Commit 48b1ad81 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

iso-639: remove now unused field

parent e6e1db16
...@@ -30,7 +30,6 @@ ...@@ -30,7 +30,6 @@
struct iso639_lang_t struct iso639_lang_t
{ {
const char *psz_eng_name; /* Description in English */ const char *psz_eng_name; /* Description in English */
const char *psz_native_name; /* Description in native language */
const char psz_iso639_1[3]; /* ISO-639-1 (2 characters) code */ const char psz_iso639_1[3]; /* ISO-639-1 (2 characters) code */
const char psz_iso639_2T[4]; /* ISO-639-2/T (3 characters) English code */ const char psz_iso639_2T[4]; /* ISO-639-2/T (3 characters) English code */
const char psz_iso639_2B[4]; /* ISO-639-2/B (3 characters) native code */ const char psz_iso639_2B[4]; /* ISO-639-2/B (3 characters) native code */
......
This diff is collapsed.
...@@ -42,7 +42,7 @@ ...@@ -42,7 +42,7 @@
#include "iso-639_def.h" #include "iso-639_def.h"
static const iso639_lang_t unknown_language = static const iso639_lang_t unknown_language =
{ "Unknown", "Unknown", "??", "???", "???" }; { "Unknown", "??", "???", "???" };
const iso639_lang_t * GetLang_1( const char * psz_code ) const iso639_lang_t * GetLang_1( const char * psz_code )
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment