diff options
author | jcid <devnull@localhost> | 2008-05-24 14:42:38 +0200 |
---|---|---|
committer | jcid <devnull@localhost> | 2008-05-24 14:42:38 +0200 |
commit | 1d1fb3f9512e5d2407452b357afcb942aeaccd54 (patch) | |
tree | ddfbafa2b22e412289c17b37313b5ea57d4f4ba4 /src/findbar.cc | |
parent | 785a7379f982c7b786a394aa32e00aae7b4e9c56 (diff) |
- Minor spelling fixes.
Diffstat (limited to 'src/findbar.cc')
-rw-r--r-- | src/findbar.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/findbar.cc b/src/findbar.cc index f5f8aad4..e8a5883c 100644 --- a/src/findbar.cc +++ b/src/findbar.cc @@ -37,7 +37,7 @@ int MyInput::handle(int e) unsigned modifier = event_state() & (SHIFT | CTRL | ALT | META); if (modifier == 0) { if (e == KEY && k == EscapeKey) { - _MSG("findbar NewInput: catched EscapeKey\n"); + _MSG("findbar NewInput: caught EscapeKey\n"); ret = 0; } } @@ -114,7 +114,7 @@ Findbar::Findbar(int width, int height, UI *ui) : // todo: search previous would be nice findb = new HighlightButton(x, border, button_width, height, "&Next"); x += button_width + gap; - findb->tooltip("Find next occurence of the search phrase"); + findb->tooltip("Find next occurrence of the search phrase"); findb->add_shortcut(ReturnKey); findb->add_shortcut(KeypadEnter); findb->callback(findbar_search_cb, this); |