From 903b2eb61a7fe2fa04f7e8a1baf41113b71b9000 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Wed, 17 Jun 2015 15:16:52 +0200 Subject: [PATCH] Fix typo in a comment in the previous commit. s/evreything/everything/ --- samples/config/conftest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/config/conftest.cpp b/samples/config/conftest.cpp index 1ef8886ca2..ae00f2841b 100644 --- a/samples/config/conftest.cpp +++ b/samples/config/conftest.cpp @@ -173,7 +173,7 @@ MyFrame::MyFrame() m_text = new wxTextCtrl(panel, wxID_ANY); m_check = new wxCheckBox(panel, wxID_ANY, wxT("show welcome message box at startup")); - // put evreything in a sizer + // put everything in a sizer wxBoxSizer* sizer = new wxBoxSizer(wxVERTICAL); sizer->Add(st, wxSizerFlags().Border(wxLEFT|wxBOTTOM|wxTOP, 10)); sizer->Add(m_text, wxSizerFlags().Border(wxLEFT|wxBOTTOM|wxRIGHT, 10).Expand());