X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetGraphicsParams.cpp;h=f4cd119f6e34ffd762e24c1bf3b8ce52d8a2ced4;hb=a25569ebb3e739779ff458b287e403c3bf79777a;hp=4f0266ccf885d1a28ca14303bc130ed37e17dfd1;hpb=5816e0107dc7a43cc123a5aba3cc6f1638cdb977;p=lyx.git diff --git a/src/insets/InsetGraphicsParams.cpp b/src/insets/InsetGraphicsParams.cpp index 4f0266ccf8..f4cd119f6e 100644 --- a/src/insets/InsetGraphicsParams.cpp +++ b/src/insets/InsetGraphicsParams.cpp @@ -18,12 +18,12 @@ #include "Lexer.h" #include "LyXRC.h" +#include "graphics/epstools.h" #include "graphics/GraphicsParams.h" #include "graphics/GraphicsTypes.h" #include "support/convert.h" #include "support/debug.h" -#include "support/filetools.h" #include "support/lyxlib.h" #include "support/lstrings.h" #include "support/Translator.h" @@ -262,7 +262,7 @@ graphics::Params InsetGraphicsParams::as_grfxParams() const pars.bb = bb; // Get the original Bounding Box from the file - string const tmp = readBB_from_PSFile(filename); + string const tmp = graphics::readBB_from_PSFile(filename); LYXERR(Debug::GRAPHICS, "BB_from_File: " << tmp); if (!tmp.empty()) { unsigned int const bb_orig_xl = convert(token(tmp, ' ', 0));