From cdb72419956d7a5d87288a8cb6c1a83b69c79345 Mon Sep 17 00:00:00 2001 From: Scott Talbert Date: Sun, 3 Feb 2019 19:36:09 -0500 Subject: [PATCH] Document wxLocaleInitFlags Closes https://github.com/wxWidgets/wxWidgets/pull/1216 --- interface/wx/intl.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/interface/wx/intl.h b/interface/wx/intl.h index 8abf9a9c57..17d42de8d8 100644 --- a/interface/wx/intl.h +++ b/interface/wx/intl.h @@ -214,6 +214,12 @@ enum wxLocaleInfo @see @ref overview_i18n, @ref page_samples_internat, wxXLocale, wxTranslations */ +enum wxLocaleInitFlags +{ + wxLOCALE_DONT_LOAD_DEFAULT = 0x0000, ///< Don't load wxstd.mo catalog. + wxLOCALE_LOAD_DEFAULT = 0x0001 ///< Load wxstd.mo (done by default). +}; + class wxLocale { public: