mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-24 18:43:37 +00:00
Fix small typos
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1118 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
1ed9a50116
commit
b6190b0fc3
@ -1,3 +1,10 @@
|
|||||||
|
2000-10-13 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
|
||||||
|
|
||||||
|
* src/support/lyxfunctional.h (void_class_fun_t): fix name of
|
||||||
|
constructor.
|
||||||
|
|
||||||
|
* src/bufferlist.C: add using directive.
|
||||||
|
|
||||||
2000-10-13 Lars Gullik Bjønnes <larsbj@lyx.org>
|
2000-10-13 Lars Gullik Bjønnes <larsbj@lyx.org>
|
||||||
|
|
||||||
* src/support/lyxfunctional.h: version of class_fun for void
|
* src/support/lyxfunctional.h: version of class_fun for void
|
||||||
|
10
README
10
README
@ -1,4 +1,4 @@
|
|||||||
Preamble: LyX versionning scheme
|
Preamble: LyX version scheme
|
||||||
|
|
||||||
In September of 1999 the LyX Team decided that we could no
|
In September of 1999 the LyX Team decided that we could no
|
||||||
longer successfully use the two strand development process
|
longer successfully use the two strand development process
|
||||||
@ -17,9 +17,7 @@ Preamble: LyX versionning scheme
|
|||||||
|
|
||||||
* Establishing the foundations of GUI/system independence,
|
* Establishing the foundations of GUI/system independence,
|
||||||
|
|
||||||
* Rearrangement of the directory structure,
|
* Rearrangement of the directory structure.
|
||||||
|
|
||||||
* Use of libtool, automake and autoconf.
|
|
||||||
|
|
||||||
Once the transition is over the 1.1 series should be very
|
Once the transition is over the 1.1 series should be very
|
||||||
stable and we will then release 1.2.0. This new series will be
|
stable and we will then release 1.2.0. This new series will be
|
||||||
@ -28,9 +26,9 @@ Preamble: LyX versionning scheme
|
|||||||
occurring in branches of CVS and once the feature/modification
|
occurring in branches of CVS and once the feature/modification
|
||||||
has proved stable it will be merged into the main releases.
|
has proved stable it will be merged into the main releases.
|
||||||
|
|
||||||
Versionning uses a continuous numbering scheme where odd or
|
LyX now uses a continuous numbering scheme where odd or
|
||||||
even numbering is no longer significant. Prereleases are
|
even numbering is no longer significant. Prereleases are
|
||||||
labelled with a "pre" suffix and any fixes required between
|
labeled with a "pre" suffix and any fixes required between
|
||||||
stable releases have a "fix" suffix. Thus there are three
|
stable releases have a "fix" suffix. Thus there are three
|
||||||
possible file names:
|
possible file names:
|
||||||
|
|
||||||
|
@ -45,6 +45,7 @@ using std::find;
|
|||||||
using std::endl;
|
using std::endl;
|
||||||
using std::find_if;
|
using std::find_if;
|
||||||
using std::for_each;
|
using std::for_each;
|
||||||
|
using std::mem_fun;
|
||||||
|
|
||||||
//
|
//
|
||||||
// Class BufferStorage
|
// Class BufferStorage
|
||||||
|
@ -22,7 +22,7 @@ private:
|
|||||||
template<class C, class A>
|
template<class C, class A>
|
||||||
class void_class_fun_t {
|
class void_class_fun_t {
|
||||||
public:
|
public:
|
||||||
class_fun_t(C & ct, void(C::*p)(A))
|
void_class_fun_t(C & ct, void(C::*p)(A))
|
||||||
: c(ct), cmf(p) {}
|
: c(ct), cmf(p) {}
|
||||||
void operator()(A & a) const {
|
void operator()(A & a) const {
|
||||||
return (c.*cmf)(a);
|
return (c.*cmf)(a);
|
||||||
|
Loading…
Reference in New Issue
Block a user