diff --git a/src/frontends/controllers/ControlMath.C b/src/frontends/controllers/ControlMath.C index 833cf6086c..d0cf5d4808 100644 --- a/src/frontends/controllers/ControlMath.C +++ b/src/frontends/controllers/ControlMath.C @@ -22,6 +22,12 @@ char const * function_names[] = { int const nr_function_names = sizeof(function_names) / sizeof(char const *) - 1; +char const * latex_dots[] = { + "ldots", "cdots", "vdots", "ddots", "" +}; + +int const nr_latex_dots = sizeof(latex_dots) / sizeof(char const *) - 1; + char const * latex_arrow[] = { "downarrow", "leftarrow", "Downarrow", "Leftarrow", "hookleftarrow", "rightarrow", "uparrow", "Rightarrow", "Uparrow", @@ -62,12 +68,6 @@ char const * latex_brel[] = { int const nr_latex_brel = sizeof(latex_brel) / sizeof(char const *); -char const * latex_dots[] = { - "ldots", "cdots", "vdots", "ddots" -}; - -int const nr_latex_dots = sizeof(latex_dots) / sizeof(char const *); - char const * latex_greek[] = { "Gamma", "Delta", "Theta", "Lambda", "Xi", "Pi", "Sigma", "Upsilon", "Phi", "Psi", "Omega",