Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion syncscribble/scribbleapp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down