X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetexternal.C;h=ec9047185275278363040ce066eaf3b49adf159f;hb=4a5b7a5952ad2381fcdf4830511293e184c7c5a1;hp=c358447417ca0000761f84d3102c22b728563252;hpb=7ea7dabed1b72cc25dcbdc482ac006f2b61dacfd;p=lyx.git diff --git a/src/insets/insetexternal.C b/src/insets/insetexternal.C index c358447417..ec90471852 100644 --- a/src/insets/insetexternal.C +++ b/src/insets/insetexternal.C @@ -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 @@ -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); }