From b6190b0fc3ccf2f2d73b353cf6b007aefd68cec1 Mon Sep 17 00:00:00 2001 From: Jean-Marc Lasgouttes Date: Fri, 13 Oct 2000 14:10:35 +0000 Subject: [PATCH] Fix small typos git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1118 a592a061-630c-0410-9148-cb99ea01b6c8 --- ChangeLog | 7 +++++++ README | 10 ++++------ src/bufferlist.C | 1 + src/support/lyxfunctional.h | 2 +- 4 files changed, 13 insertions(+), 7 deletions(-) diff --git a/ChangeLog b/ChangeLog index eab65a605e..e08d0e2131 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2000-10-13 Jean-Marc Lasgouttes + + * 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 * src/support/lyxfunctional.h: version of class_fun for void diff --git a/README b/README index 83088c3019..55c704edfd 100644 --- a/README +++ b/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 longer successfully use the two strand development process @@ -17,9 +17,7 @@ Preamble: LyX versionning scheme * Establishing the foundations of GUI/system independence, - * Rearrangement of the directory structure, - - * Use of libtool, automake and autoconf. + * Rearrangement of the directory structure. 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 @@ -28,9 +26,9 @@ Preamble: LyX versionning scheme occurring in branches of CVS and once the feature/modification 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 - 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 possible file names: diff --git a/src/bufferlist.C b/src/bufferlist.C index ce9b10dda2..6de9f42223 100644 --- a/src/bufferlist.C +++ b/src/bufferlist.C @@ -45,6 +45,7 @@ using std::find; using std::endl; using std::find_if; using std::for_each; +using std::mem_fun; // // Class BufferStorage diff --git a/src/support/lyxfunctional.h b/src/support/lyxfunctional.h index 6ac9ef25ac..ae65cc8a59 100644 --- a/src/support/lyxfunctional.h +++ b/src/support/lyxfunctional.h @@ -22,7 +22,7 @@ private: template class void_class_fun_t { public: - class_fun_t(C & ct, void(C::*p)(A)) + void_class_fun_t(C & ct, void(C::*p)(A)) : c(ct), cmf(p) {} void operator()(A & a) const { return (c.*cmf)(a);