Move LANG_DE to the end of the Language enum

This commit is contained in:
Cameron Gutman 2021-03-09 20:13:55 -06:00
parent d7fa8c9795
commit b5f8e6738a

View File

@ -60,13 +60,16 @@ public:
};
Q_ENUM(UIDisplayMode)
// New entries must go at the end of the enum
// to avoid renumbering existing entries (which
// would affect existing user preferences).
enum Language
{
LANG_AUTO,
LANG_DE,
LANG_EN,
LANG_FR,
LANG_ZH_CN
LANG_ZH_CN,
LANG_DE
};
Q_ENUM(Language);