]> git.lyx.org Git - lyx.git/blobdiff - src/trans_mgr.C
don't rm emergency saves ever
[lyx.git] / src / trans_mgr.C
index 90afbc1fba149a13cde689fb2439862a05b88bd0..4ea10090b07e4d40e01f721f651040c9d13c67c2 100644 (file)
@@ -1,9 +1,5 @@
 #include <config.h>
 
-#ifdef __GNUG__
-#pragma implementation "trans_mgr.h"
-#endif
-
 #include "trans_mgr.h"
 #include "trans.h"
 #include "lyxtext.h"
@@ -259,7 +255,7 @@ void TransManager::insertVerbatim(string const & str, LyXText * text)
        string::size_type const l = str.length();
 
        for (string::size_type i = 0; i < l; ++i) {
-               text->insertChar(current_view, str[i]);
+               text->insertChar(str[i]);
        }
 }
 
@@ -278,7 +274,7 @@ void TransManager::insert(string const & str, LyXText * text)
                // Could not find an encoding
                InsetLatexAccent ins(str);
                if (ins.canDisplay()) {
-                       text->insertInset(current_view,
+                       text->insertInset(
                                          new InsetLatexAccent(ins));
                } else {
                        insertVerbatim(str, text);