diff options
author | Tobias Weimer <wishmaster51@gmail.com> | 2024-08-21 19:18:49 +0200 |
---|---|---|
committer | Tobias Weimer <wishmaster51@gmail.com> | 2024-08-21 19:18:49 +0200 |
commit | d865585bd8334270586ffaebbc0e8c74a6f1536a (patch) | |
tree | be2a57ebdd7358b99a852612a689b2c899818915 /plugins/NewStory/src | |
parent | 8e83809c7e6850cb3adef7c461093125189b4842 (diff) |
NewStory
Corrected typo
Diffstat (limited to 'plugins/NewStory/src')
-rw-r--r-- | plugins/NewStory/src/history_dlg.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/NewStory/src/history_dlg.cpp b/plugins/NewStory/src/history_dlg.cpp index 93633345ab..bfaf5149ae 100644 --- a/plugins/NewStory/src/history_dlg.cpp +++ b/plugins/NewStory/src/history_dlg.cpp @@ -595,7 +595,7 @@ public: int iOldCaret = m_histCtrl->caret;
int res = m_histCtrl->FindNext(ptrW(edtSearchText.GetText()));
if (res == -1)
- SetWindowTextW(m_hwndStatus, TranslateT("No more occuurences found"));
+ SetWindowTextW(m_hwndStatus, TranslateT("No more occurrences found"));
else if (res < iOldCaret)
SetWindowTextW(m_hwndStatus, TranslateT("Passed the end of history"));
else
|