]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetexternal.C
Don't remove cell selections after fontchange.
[lyx.git] / src / insets / insetexternal.C
index c358447417ca0000761f84d3102c22b728563252..ec9047185275278363040ce066eaf3b49adf159f 100644 (file)
@@ -29,7 +29,7 @@
 #include "support/filetools.h"
 #include "support/lstrings.h"
 #include "support/path.h"
-#include "support/syscall.h"
+#include "support/systemcall.h"
 #include "support/FileInfo.h"
 
 #include <cstdio>
@@ -220,12 +220,12 @@ void InsetExternal::executeCommand(string const & s,
                                   Buffer const * buffer) const
 {
        Path p(buffer->filePath());
-       Systemcalls one;
+       Systemcall one;
        if (lyxerr.debugging()) {
                lyxerr << "Executing '" << s << "' in '"
                       << buffer->filePath() << "'" << endl;
        }
-       one.startscript(Systemcalls::Wait, s);
+       one.startscript(Systemcall::Wait, s);
 }