mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Strip redundant #includes.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7669 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
3b3c072df0
commit
c9403be3b0
@ -1,3 +1,7 @@
|
||||
2003-09-05 Angus Leeming <leeming@lyx.org>
|
||||
|
||||
* *.C: strip out redundant #includes.
|
||||
|
||||
2003-09-04 Angus Leeming <angus@localhost.localdomain>
|
||||
|
||||
* LoaderQueue.C (get):
|
||||
|
@ -19,12 +19,9 @@
|
||||
|
||||
#include "support/filetools.h"
|
||||
|
||||
#include "frontends/lyx_gui.h"
|
||||
|
||||
#include <map>
|
||||
|
||||
namespace support = lyx::support;
|
||||
|
||||
|
||||
namespace lyx {
|
||||
namespace graphics {
|
||||
|
||||
|
@ -13,20 +13,17 @@
|
||||
#include <config.h>
|
||||
|
||||
#include "GraphicsCacheItem.h"
|
||||
#include "GraphicsImage.h"
|
||||
#include "GraphicsConverter.h"
|
||||
|
||||
#include "support/FileMonitor.h"
|
||||
#include "GraphicsImage.h"
|
||||
|
||||
#include "debug.h"
|
||||
|
||||
#include "support/LAssert.h"
|
||||
#include "support/filetools.h"
|
||||
#include "support/FileMonitor.h"
|
||||
#include "support/LAssert.h"
|
||||
#include "support/lyxlib.h"
|
||||
|
||||
#include <boost/shared_ptr.hpp>
|
||||
#include <boost/bind.hpp>
|
||||
#include <boost/signals/trackable.hpp>
|
||||
|
||||
namespace support = lyx::support;
|
||||
|
||||
|
@ -13,23 +13,19 @@
|
||||
#include "GraphicsConverter.h"
|
||||
|
||||
#include "converter.h"
|
||||
#include "format.h"
|
||||
#include "debug.h"
|
||||
#include "format.h"
|
||||
|
||||
#include "support/filetools.h"
|
||||
#include "support/forkedcall.h"
|
||||
#include "support/forkedcallqueue.h"
|
||||
#include "support/tostr.h"
|
||||
#include "support/lstrings.h"
|
||||
#include "support/lyxlib.h"
|
||||
|
||||
#include <boost/bind.hpp>
|
||||
#include <boost/signals/trackable.hpp>
|
||||
|
||||
#include "Lsstream.h"
|
||||
#include "support/LOstream.h"
|
||||
#include <fstream>
|
||||
#include <sys/types.h> // needed for pid_t
|
||||
|
||||
namespace support = lyx::support;
|
||||
|
||||
@ -48,6 +44,7 @@ using support::unlink;
|
||||
using std::endl;
|
||||
using std::ostream;
|
||||
|
||||
|
||||
namespace lyx {
|
||||
namespace graphics {
|
||||
|
||||
|
@ -12,18 +12,13 @@
|
||||
|
||||
#include "GraphicsLoader.h"
|
||||
|
||||
#include "GraphicsCache.h"
|
||||
#include "GraphicsCacheItem.h"
|
||||
#include "GraphicsImage.h"
|
||||
#include "GraphicsParams.h"
|
||||
#include "LoaderQueue.h"
|
||||
|
||||
#include "frontends/LyXView.h"
|
||||
|
||||
#include <boost/bind.hpp>
|
||||
#include <boost/signals/trackable.hpp>
|
||||
|
||||
#include <list>
|
||||
|
||||
namespace lyx {
|
||||
namespace graphics {
|
||||
@ -63,7 +58,6 @@ private:
|
||||
|
||||
///
|
||||
Params params_;
|
||||
|
||||
};
|
||||
|
||||
|
||||
|
@ -10,14 +10,15 @@
|
||||
|
||||
#include <config.h>
|
||||
|
||||
#include <cstdlib>
|
||||
|
||||
#include "GraphicsParams.h"
|
||||
#include "Lsstream.h"
|
||||
|
||||
#include "lyxlength.h"
|
||||
|
||||
#include "Lsstream.h"
|
||||
|
||||
using std::abs;
|
||||
|
||||
|
||||
namespace lyx {
|
||||
namespace graphics {
|
||||
|
||||
|
@ -11,14 +11,13 @@
|
||||
#include <config.h>
|
||||
|
||||
#include "PreviewImage.h"
|
||||
#include "PreviewLoader.h"
|
||||
#include "GraphicsImage.h"
|
||||
#include "GraphicsLoader.h"
|
||||
#include "PreviewLoader.h"
|
||||
|
||||
#include "support/lyxlib.h"
|
||||
|
||||
#include <boost/bind.hpp>
|
||||
#include <boost/signals/trackable.hpp>
|
||||
|
||||
namespace support = lyx::support;
|
||||
|
||||
|
@ -18,29 +18,21 @@
|
||||
#include "format.h"
|
||||
#include "debug.h"
|
||||
#include "lyxrc.h"
|
||||
#include "LColor.h"
|
||||
#include "Lsstream.h"
|
||||
|
||||
#include "insets/inset.h"
|
||||
|
||||
#include "frontends/lyx_gui.h" // hexname
|
||||
|
||||
#include "support/filetools.h"
|
||||
#include "support/forkedcall.h"
|
||||
#include "support/forkedcontr.h"
|
||||
#include "support/tostr.h"
|
||||
#include "support/lstrings.h"
|
||||
#include "support/lyxlib.h"
|
||||
#include "support/tostr.h"
|
||||
|
||||
#include <boost/bind.hpp>
|
||||
#include <boost/signals/trackable.hpp>
|
||||
|
||||
#include "Lsstream.h"
|
||||
#include <fstream>
|
||||
#include <iomanip>
|
||||
#include <list>
|
||||
#include <map>
|
||||
#include <utility>
|
||||
#include <vector>
|
||||
|
||||
namespace support = lyx::support;
|
||||
|
||||
|
@ -11,16 +11,12 @@
|
||||
#include <config.h>
|
||||
|
||||
#include "PreviewedInset.h"
|
||||
#include "GraphicsImage.h"
|
||||
#include "PreviewLoader.h"
|
||||
#include "PreviewImage.h"
|
||||
#include "PreviewLoader.h"
|
||||
#include "Previews.h"
|
||||
|
||||
#include "buffer.h"
|
||||
#include "BufferView.h"
|
||||
|
||||
#include "frontends/LyXView.h"
|
||||
|
||||
#include "support/lstrings.h"
|
||||
|
||||
#include <boost/bind.hpp>
|
||||
|
@ -16,12 +16,8 @@
|
||||
#include "buffer.h"
|
||||
#include "lyxrc.h"
|
||||
|
||||
#include "insets/inset.h"
|
||||
|
||||
#include "support/LAssert.h"
|
||||
|
||||
#include <map>
|
||||
|
||||
namespace support = lyx::support;
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user