rename some math delimiters (from Andr� P�nitz).

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2469 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Angus Leeming 2001-08-09 15:55:58 +00:00
parent 14499f5ac1
commit 9b8770ac54
2 changed files with 9 additions and 6 deletions

View File

@ -1,3 +1,7 @@
2001-08-09 André Pönitz <poenitz@htwm.de>
* FormMathsDelim.C: renamed some delimiter parameters.
2001-08-09 Angus Leeming <a.leeming@ic.ac.uk>
* FormCitation.C (build):

View File

@ -21,7 +21,6 @@
#include "LyXView.h"
#include "bmtable.h"
#include "debug.h"
#include "mathed/symbol_def.h"
#include "support/lstrings.h"
#include "lyxfunc.h"
@ -32,11 +31,11 @@ static int const delim_rversion[] = {
1,1,3,3,4,5,7,7,9,9,10,11,
13,13,14,15,16,17,19,19,20,21,22,23 };
static int delim_values[] = {
'(', ')', LM_lceil, LM_rceil, LM_uparrow, LM_Uparrow,
'[', ']', LM_lfloor, LM_rfloor, LM_updownarrow, LM_Updownarrow,
'{', '}', '/', LM_backslash, LM_downarrow, LM_Downarrow,
LM_langle, LM_rangle, '|', LM_Vert, '.', 0
static char const * delim_values[] = {
"(", ")", "lceil", "rceil", "uparrow", "Uparrow",
"[", "]", "lfloor", "rfloor", "updownarrow", "Updownarrow",
"{", "}", "/", "\\", "downarrow", "Downarrow",
"langle", "rangle", "|", "Vert", ".", 0
};
using std::endl;