]> git.lyx.org Git - lyx.git/blobdiff - src/mover.C
cleanup after svn hang-up, #undef CursorShape. Should be compilable ganin now.
[lyx.git] / src / mover.C
index 4ffb3458fde4676549aa92ef2d96488ab4609e7f..e8a69a5bea9af018d6b0b21bba7e8dd581a8219d 100644 (file)
@@ -8,6 +8,8 @@
  * Full author contact details are available in file CREDITS.
  */
 
+#include <config.h>
+
 #include "mover.h"
 
 #include "support/filetools.h"
@@ -27,26 +29,26 @@ Movers system_movers;
 
 
 bool Mover::do_copy(string const & from, string const & to,
-                    string const &) const
+                   string const &) const
 {
        return support::copy(from, to);
 }
 
 
 bool Mover::do_rename(string const & from, string const & to,
-                      string const &) const
+                     string const &) const
 {
        return support::rename(from, to);
 }
 
 
 bool SpecialisedMover::do_copy(string const & from, string const & to,
-                               string const & latex) const
+                              string const & latex) const
 {
        if (command_.empty())
                return Mover::do_copy(from, to, latex);
 
-       string command = support::LibScriptSearch(command_);
+       string command = support::libScriptSearch(command_);
        command = support::subst(command, "$$i", from);
        command = support::subst(command, "$$o", to);
        command = support::subst(command, "$$l", latex);
@@ -57,7 +59,7 @@ bool SpecialisedMover::do_copy(string const & from, string const & to,
 
 
 bool SpecialisedMover::do_rename(string const & from, string const & to,
-                                 string const & latex) const
+                                string const & latex) const
 {
        if (command_.empty())
                return Mover::do_rename(from, to, latex);