]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/ChangeLog
first go at mathed file cleanup
[lyx.git] / src / mathed / ChangeLog
index da0505e9c4b497a9540fe8754be0775228f6973d..72af1de76223503cadcf8402908bdace744d8246 100644 (file)
@@ -1,3 +1,58 @@
+2001-02-13  Lars Gullik Bjønnes  <larsbj@lyx.org>
+
+       * array.C (strange_copy): fix bug (hopefully) 
+       * many files: add a lot of new files and move methods to the class
+       files they belong to. Only first attempt at cleanup more will
+       follow.
+       
+2001-02-12  André Pönitz  <poenitz@htwm.de>
+       
+       * math_macro.[hC]: replace MathMacroArgument[] with
+         std::vector<MathMacroArgument>
+       * math_defs.h:
+         math_inset.C: replace int[] with std::vector<int>
+       * math_panel.h:
+       * math_symbols.C: replace FL_OBJECTP[] with
+       std::vector<FL_OBJECT*>
+       
+2001-02-12  Lars Gullik Bjønnes  <larsbj@lyx.org>
+
+       * math_defs.h (struct MathedRowSt): make all private variables end
+       with '_', initialize in initializer list instead of in function
+       body.
+
+2001-02-12  Dekel Tsur  <dekelts@tau.ac.il>
+
+       * formula.C (LocalDispatch): Change the default action of
+       break-line to create an align* environment instead of eqnarray*.
+
+       * math_inset.C (Metrics): Correct drawing of the multline
+       environment.
+
+2001-02-12  André Pönitz  <poenitz@htwm.de>
+       
+       * array.[hC]: replace private variable maxsize_ with call to
+       bf_.size()
+       * math_defs.h: replace int[] by std::vector<int> for
+       MathedRowSt::widths
+
+2001-02-09  Lars Gullik Bjønnes  <larsbj@lyx.org>
+
+       * array.h: made all variables private, removed friend, added new
+       methods: raw_pointer_insert, raw_pointer_copy, strange_copy, added
+       non const operator[] added setter for last and getter for maxsize.
+       changed name from LyxArrayBase to MathedArray.
+       changed name of some methods to start with lowerchar.
+       moved inline methods to array.C
+       
+       * math_iter.C + several file: changes because of the above.
+
+       * array.C: new file with the prev inline methods.
+       
+2001-02-10  Dekel Tsur  <dekelts@tau.ac.il>
+
+       * Many files: add support for the align environment from amsmath.
+
 2001-02-09  André Pönitz  <poenitz@htwm.de>
 
        * array.h: replace array buffer  'byte bf[]'  by 'std::vector<byte> bf'