]> git.lyx.org Git - lyx.git/blobdiff - src/trans_mgr.C
cosmetic fix
[lyx.git] / src / trans_mgr.C
index 13561a04ffc52c361d41a6345c78bc6609be7f20..496bdd7394071d1b37038aa380fbadf29f63b810 100644 (file)
 #include "lyxrc.h"
 #include "support/lstrings.h"
 
+using namespace lyx::support;
+
 using std::endl;
 using std::pair;
 
 extern string const DoAccent(string const &, tex_accent);
 extern string const DoAccent(char, tex_accent);
-extern BufferView * current_view;
 
 
 // TransFSMData
@@ -255,7 +256,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]);
        }
 }
 
@@ -274,7 +275,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);