X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fgraphics%2FPreviewImage.C;h=75d41634ced7a43394d54dc6f2bf9d2fccf2633e;hb=005545f28100fd30afa22313d6e3b1b67aa9a857;hp=bd96232e734e89bed30c7fba1aa3bd209ecbf017;hpb=a67816b7285d8cf6ba1e4b8e71ac8b7f1f9a7536;p=lyx.git diff --git a/src/graphics/PreviewImage.C b/src/graphics/PreviewImage.C index bd96232e73..75d41634ce 100644 --- a/src/graphics/PreviewImage.C +++ b/src/graphics/PreviewImage.C @@ -1,27 +1,31 @@ /** - * \file PreviewImage.C + * \file PreviewImage.C * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * * \author Angus Leeming * - * Full author contact details are available in file CREDITS + * Full author contact details are available in file CREDITS. */ #include #include "PreviewImage.h" -#include "PreviewLoader.h" #include "GraphicsImage.h" #include "GraphicsLoader.h" +#include "PreviewLoader.h" #include "support/lyxlib.h" #include -#include + +namespace support = lyx::support; + +using std::string; -namespace grfx { +namespace lyx { +namespace graphics { struct PreviewImage::Impl : public boost::signals::trackable { /// @@ -112,7 +116,7 @@ PreviewImage::Impl::Impl(PreviewImage & p, PreviewLoader & l, PreviewImage::Impl::~Impl() { - lyx::unlink(iloader_.filename()); + support::unlink(iloader_.filename()); } @@ -145,10 +149,11 @@ void PreviewImage::Impl::statusChanged() break; case Ready: - lyx::unlink(iloader_.filename()); - ploader_.emitSignal(parent_); + support::unlink(iloader_.filename()); break; } + ploader_.emitSignal(parent_); } -} // namespace grfx +} // namespace graphics +} // namespace lyx