]> git.lyx.org Git - lyx.git/commitdiff
Fix typo
authorPavel Sanda <sanda@lyx.org>
Sun, 2 Dec 2007 23:55:38 +0000 (23:55 +0000)
committerPavel Sanda <sanda@lyx.org>
Sun, 2 Dec 2007 23:55:38 +0000 (23:55 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@21933 a592a061-630c-0410-9148-cb99ea01b6c8

src/CutAndPaste.cpp
src/frontends/qt4/GuiApplication.cpp

index 423f323cf90a42f286495d337b1c7360b595cb67..6984e5f5daf68b388e8d0582a0ba1bd00e9f5d5b 100644 (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()) {
index 7b78c882514ccc2bbbfed740ba7540917d445e38..654ad68e2d4482da2bafb2e84da67ad7c5a0ea14 100644 (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);