Move LANG_DE to the end of the Language enum
This commit is contained in:
parent
d7fa8c9795
commit
b5f8e6738a
1 changed files with 5 additions and 2 deletions
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue