]> git.lyx.org Git - lyx.git/blobdiff - src/Exporter.cpp
fix a visual cursor edge-case:
[lyx.git] / src / Exporter.cpp
index dbe4e5ad98a761e8e15759bfe3a43e89be400737..8546b0a8ca8a76e912f02523611d06ff99adcd7e 100644 (file)
 
 #include "Exporter.h"
 
-#include "gettext.h"
 #include "Mover.h"
+
 #include "frontends/alert.h"
 
 #include "support/filetools.h"
+#include "support/gettext.h"
+#include "support/lstrings.h"
 #include "support/Package.h"
 
-#include <boost/filesystem/operations.hpp>
-
-using std::find;
-using std::string;
-using std::vector;
+#include <algorithm>
 
+using namespace std;
+using namespace lyx::support;
 
 namespace lyx {
 
-using support::bformat;
-using support::FileName;
-using support::makeDisplayPath;
-using support::onlyFilename;
-using support::onlyPath;
-using support::package;
-using support::prefixIs;
-
 namespace Alert = frontend::Alert;
-namespace fs = boost::filesystem;
 
 /// ask the user what to do if a file already exists
 static int checkOverwrite(FileName const & filename)