From: Pavel Sanda Date: Sun, 2 Dec 2007 23:55:38 +0000 (+0000) Subject: Fix typo X-Git-Tag: 1.6.10~7071 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=be0895b6647b259f71c120763c3d01525b902b83;p=lyx.git Fix typo git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@21933 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/CutAndPaste.cpp b/src/CutAndPaste.cpp index 423f323cf9..6984e5f5da 100644 --- a/src/CutAndPaste.cpp +++ b/src/CutAndPaste.cpp @@ -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()) { diff --git a/src/frontends/qt4/GuiApplication.cpp b/src/frontends/qt4/GuiApplication.cpp index 7b78c88251..654ad68e2d 100644 --- a/src/frontends/qt4/GuiApplication.cpp +++ b/src/frontends/qt4/GuiApplication.cpp @@ -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);