]> git.lyx.org Git - lyx.git/blobdiff - src/importer.C
* remove various xforms relicts, in particular:
[lyx.git] / src / importer.C
index 672edcdc6e1e7713bde9654d3239a5dc83bb81b2..1c84d3d147e22eef988f5e8786daf435ff908c96 100644 (file)
@@ -17,6 +17,7 @@
 #include "format.h"
 #include "frontends/LyXView.h"
 #include "funcrequest.h"
+#include "lyx_cb.h"
 
 #include "bufferlist.h"
 #include "support/filetools.h"
@@ -25,8 +26,8 @@
 #include "BufferView.h"
 
 using lyx::support::bformat;
-using lyx::support::ChangeExtension;
-using lyx::support::MakeDisplayPath;
+using lyx::support::changeExtension;
+using lyx::support::makeDisplayPath;
 
 using std::find;
 using std::string;
@@ -34,16 +35,15 @@ using std::vector;
 
 
 extern BufferList bufferlist;
-extern void InsertAsciiFile(BufferView *, string const &, bool);
 
 
 bool Importer::Import(LyXView * lv, string const & filename,
                      string const & format)
 {
-       string const displaypath = MakeDisplayPath(filename);
+       string const displaypath = makeDisplayPath(filename);
        lv->message(bformat(_("Importing %1$s..."), displaypath));
 
-       string const lyxfile = ChangeExtension(filename, ".lyx");
+       string const lyxfile = changeExtension(filename, ".lyx");
 
        string loader_format;
        vector<string> loaders = Loaders();
@@ -61,7 +61,7 @@ bool Importer::Import(LyXView * lv, string const & filename,
                if (loader_format.empty()) {
                        Alert::error(_("Couldn't import file"),
                                     bformat(_("No information for importing the format %1$s."),
-                                        formats.prettyName(format)));
+                                        formats.prettyName(format)));
                        return false;
                }
        } else
@@ -74,9 +74,9 @@ bool Importer::Import(LyXView * lv, string const & filename,
                lv->view()->newFile(lyxfile, string(), true);
                bool as_paragraphs = loader_format == "textparagraph";
                string filename2 = (loader_format == format) ? filename
-                       : ChangeExtension(filename,
+                       : changeExtension(filename,
                                          formats.extension(loader_format));
-               InsertAsciiFile(lv->view().get(), filename2, as_paragraphs);
+               insertAsciiFile(lv->view(), filename2, as_paragraphs);
                lv->dispatch(FuncRequest(LFUN_MARK_OFF));
        }