Just fix a typo in the preferences sample

"Use" and not "User".
This commit is contained in:
Vadim Zeitlin 2017-07-11 22:45:18 +02:00
parent 3105134548
commit 18f3992801

View File

@ -90,7 +90,7 @@ class PrefsPageGeneralPanel : public wxPanel
public:
PrefsPageGeneralPanel(wxWindow *parent) : wxPanel(parent)
{
m_useMarkdown = new wxCheckBox(this, wxID_ANY, "User Markdown syntax");
m_useMarkdown = new wxCheckBox(this, wxID_ANY, "Use Markdown syntax");
m_spellcheck = new wxCheckBox(this, wxID_ANY, "Check spelling");
wxSizer *sizer = new wxBoxSizer(wxVERTICAL);