]> git.lyx.org Git - lyx.git/commitdiff
Fix small typos
authorJean-Marc Lasgouttes <lasgouttes@lyx.org>
Fri, 13 Oct 2000 14:10:35 +0000 (14:10 +0000)
committerJean-Marc Lasgouttes <lasgouttes@lyx.org>
Fri, 13 Oct 2000 14:10:35 +0000 (14:10 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1118 a592a061-630c-0410-9148-cb99ea01b6c8

ChangeLog
README
src/bufferlist.C
src/support/lyxfunctional.h

index eab65a605ef2c4e5d822d7e97f81f9154ba1f525..e08d0e2131dbd5ef596f6e1a4cd245bea232c9fa 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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>
 
        * src/support/lyxfunctional.h: version of class_fun for void
diff --git a/README b/README
index 83088c30199b34d70f10b1f54d7d0132ddd77d7d..55c704edfd1119037a98c6e63bef10aa72e4776a 100644 (file)
--- 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:
 
index ce9b10dda2227fd82d7c276865260638af752fd2..6de9f42223c0963636eeb49f0c9a49523e22be8e 100644 (file)
@@ -45,6 +45,7 @@ using std::find;
 using std::endl;
 using std::find_if;
 using std::for_each;
+using std::mem_fun;
 
 //
 // Class BufferStorage
index 6ac9ef25aca1dfbbbd730d417c9572287e31f9a8..ae65cc8a597245623b616d8bfc69bae0d7c8fe21 100644 (file)
@@ -22,7 +22,7 @@ private:
 template<class C, class A>
 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);