From ce7aa4d84ed946ac749f53fe92417a059e0f89b8 Mon Sep 17 00:00:00 2001 From: Jerome Benoit Date: Mon, 30 Jun 2025 20:04:12 +0200 Subject: [PATCH] correct a typo This patch correct a spelling error as reported by lintian(1). --- syncscribble/scribbleapp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/syncscribble/scribbleapp.cpp b/syncscribble/scribbleapp.cpp index 66bd5df..88faf07 100644 --- a/syncscribble/scribbleapp.cpp +++ b/syncscribble/scribbleapp.cpp @@ -1429,7 +1429,7 @@ void ScribbleApp::insertDocument() { std::string filename = execDocumentList(DocumentList::CHOOSE_DOC); if(!filename.empty() && activeDoc()->insertDocument(new FileStream(filename.c_str(), "rb")) != Document::LOAD_OK) - messageBox(Warning, _("Error inserting document"), fstring(_("An error occured opening %s"), docDisplayName(filename).c_str())); + messageBox(Warning, _("Error inserting document"), fstring(_("An error occurred opening %s"), docDisplayName(filename).c_str())); } std::string ScribbleApp::execDocumentList(int mode, const char* exts, bool cancelable)