Fix some typos in the samples.

Mostly in the comments, but also a couple in the user-visible strings.
This commit is contained in:
orbitcowboy
2015-05-21 10:45:48 +02:00
committed by Vadim Zeitlin
parent d30c075a22
commit 2afddd5e22
3 changed files with 8 additions and 8 deletions

View File

@@ -91,7 +91,7 @@ class App: public wxApp {
friend class AppFrame;
public:
//! the main function called durning application start
//! the main function called during application start
virtual bool OnInit ();
//! application exit function
@@ -485,7 +485,7 @@ void AppFrame::CreateMenu ()
menuEdit->Append (wxID_SELECTALL, _("&Select all\tCtrl+A"));
menuEdit->Append (myID_SELECTLINE, _("Select &line\tCtrl+L"));
// hilight submenu
// highlight submenu
wxMenu *menuHilight = new wxMenu;
int Nr;
for (Nr = 0; Nr < g_LanguagePrefsSize; Nr++) {
@@ -500,7 +500,7 @@ void AppFrame::CreateMenu ()
// View menu
wxMenu *menuView = new wxMenu;
menuView->Append (myID_HILIGHTLANG, _("&Hilight language .."), menuHilight);
menuView->Append (myID_HILIGHTLANG, _("&Highlight language .."), menuHilight);
menuView->AppendSeparator();
menuView->AppendCheckItem (myID_FOLDTOGGLE, _("&Toggle current fold\tCtrl+T"));
menuView->AppendCheckItem (myID_OVERTYPE, _("&Overwrite mode\tIns"));