]> git.lyx.org Git - lyx.git/blobdiff - src/Exporter.cpp
Kill LFUN_PARAGRAPH_SPACING in favour of LFUN_PARAGRAPH_PARAMS.
[lyx.git] / src / Exporter.cpp
index dbe4e5ad98a761e8e15759bfe3a43e89be400737..4e78f686d06730102a80e50911370ab7cb28cd68 100644 (file)
@@ -5,11 +5,11 @@
  *
  * \author unknown
  * \author Alfredo Braunstein
- * \author Lars Gullik Bjønnes
+ * \author Lars Gullik Bjønnes
  * \author Jean Marc Lasgouttes
  * \author Angus Leeming
  * \author John Levon
- * \author André Pönitz
+ * \author André Pönitz
  *
  * Full author contact details are available in file CREDITS.
  */
 
 #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)