reorder includes and some ws

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3828 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Lars Gullik Bjønnes 2002-03-25 22:07:48 +00:00
parent 34046e3c4d
commit 28a9daa060
3 changed files with 16 additions and 7 deletions

View File

@ -1,13 +1,17 @@
2002-03-25 Lars Gullik Bjønnes <larsbj@birdstep.com>
* lyxvc.C: reorder includes.
2002-03-25 John Levon <moz@compsoc.man.ac.uk>
* BufferView_pimpl.C (updateScrollbar): update on buffer switch
properly
2002-03-19 John Levon <moz@compsoc.man.ac.uk>
* CutAndPaste.C: change layouts earlier on paste
to avoid crashing when calling getFont()
2002-03-22 Angus Leeming <a.leeming@ic.ac.uk>
* PrinterParams.h: #include "lyxrc.h" and remove that bloody

View File

@ -33,8 +33,11 @@ EXTRA_DIST = config.h.in stamp-h.in cheaders ext_l10n.h version.C.in \
counters.h
INCLUDES = $(SIGC_CFLAGS) $(BOOST_INCLUDES) $(PSPELL_INCLUDES)
localedir = $(datadir)/locale
BUILT_SOURCES = version.C
lyx_SOURCES = \
BufferView.C \
BufferView.h \

View File

@ -4,20 +4,22 @@
#pragma implementation
#endif
#include <unistd.h>
#include "frontends/Alert.h"
#include "lyxvc.h"
#include "vc-backend.h"
#include "debug.h"
#include "buffer.h"
#include "BufferView.h"
#include "gettext.h"
#include "support/filetools.h"
#include "support/lyxlib.h"
#include "LyXView.h"
#include "lyxfunc.h"
#include "frontends/Alert.h"
#include "support/filetools.h"
#include "support/lyxlib.h"
#include <unistd.h>
using std::endl;
using std::pair;