remove unused file

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1472 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jean-Marc Lasgouttes 2001-02-09 16:03:24 +00:00
parent e7ca356bf7
commit 83583d5d5b
3 changed files with 6 additions and 37 deletions

View File

@ -1,35 +0,0 @@
// -*- C++ -*-
/* This file is part of
* ======================================================
*
* LyX, The Document Processor
*
* Copyright 1995 Matthias Ettrich
* Copyright 1995-2000 the LyX Team.
*
* ====================================================== */
#ifndef BOUNDING_BOX_H
#define BOUNDING_BOX_H
///
struct BoundingBox {
///
BoundingBox()
: llx(-1), lly(-1), urx(-1), ury(-1) {}
///
bool isSet() const {
return llx != -1 && lly != - 1
&& urx != -1 && ury != -1;
}
///
int llx;
///
int lly;
///
int urx;
//
int ury;
};
#endif

View File

@ -1,5 +1,10 @@
2001-02-08 Dekel Tsur <dekelts@tau.ac.il> 2001-02-09 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* Makefile.am: remove BoundingBox.h
* BoundingBox.h: removed
2001-02-08 Dekel Tsur <dekelts@tau.ac.il>
* insettext.C (LocalDispatch): Update selection cursor when moving * insettext.C (LocalDispatch): Update selection cursor when moving
cursor to the right. cursor to the right.

View File

@ -8,7 +8,6 @@ BOOST_INCLUDES = -I$(top_srcdir)/boost
INCLUDES = -I${srcdir}/../ $(SIGC_CFLAGS) $(BOOST_INCLUDES) INCLUDES = -I${srcdir}/../ $(SIGC_CFLAGS) $(BOOST_INCLUDES)
libinsets_la_SOURCES = \ libinsets_la_SOURCES = \
BoundingBox.h \
ExternalTemplate.C \ ExternalTemplate.C \
ExternalTemplate.h \ ExternalTemplate.h \
figinset.C \ figinset.C \