git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@21933 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Pavel Sanda 2007-12-02 23:55:38 +00:00
parent 4cd6123095
commit be0895b664
2 changed files with 3 additions and 3 deletions

View File

@ -646,7 +646,7 @@ void copySelectionToStack()
void copySelection(Cursor & cur, docstring const & plaintext)
{
// In tablemode, because copy and paste actually use special table stack
// we do not attemp to get selected paragraphs under cursor. Instead, a
// we do not attempt to get selected paragraphs under cursor. Instead, a
// paragraph with the plain text version is generated so that table cells
// can be pasted as pure text somewhere else.
if (cur.selBegin().idx() != cur.selEnd().idx()) {

View File

@ -450,7 +450,7 @@ bool GuiApplication::notify(QObject * receiver, QEvent * event)
}
catch (std::exception const & e) {
docstring s = _("LyX has caught an exception, it will now "
"attemp to save all unsaved documents and exit."
"attempt to save all unsaved documents and exit."
"\n\nException: ");
s += from_ascii(e.what());
Alert::error(_("Software exception Detected"), s);
@ -459,7 +459,7 @@ bool GuiApplication::notify(QObject * receiver, QEvent * event)
}
catch (...) {
docstring s = _("LyX has caught some really weird exception, it will "
"now attemp to save all unsaved documents and exit.");
"now attempt to save all unsaved documents and exit.");
Alert::error(_("Software exception Detected"), s);
LyX::cref().emergencyCleanup();
QApplication::exit(1);