From: André Pönitz Date: Thu, 3 Jul 2003 12:03:52 +0000 (+0000) Subject: add 'special' member to ColInfo X-Git-Tag: 1.6.10~16579 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=3e0e2103b542c2cf6e34ae8b33e2ed9af6552334;p=features.git add 'special' member to ColInfo git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7233 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/mathed/formula.C b/src/mathed/formula.C index 3145c20f8a..c4c2f0959b 100644 --- a/src/mathed/formula.C +++ b/src/mathed/formula.C @@ -26,7 +26,6 @@ #include "math_support.h" #include "math_mathmlstream.h" #include "textpainter.h" -#include "Lsstream.h" #include "BufferView.h" #include "gettext.h" diff --git a/src/mathed/math_gridinfo.h b/src/mathed/math_gridinfo.h index bc51b60286..5d3e844767 100644 --- a/src/mathed/math_gridinfo.h +++ b/src/mathed/math_gridinfo.h @@ -6,6 +6,7 @@ struct ColInfo ColInfo() : align('c'), rightline(0), leftline(false) {} char align; // column alignment string width; // column width + string special; // special column alignment int rightline; // a line on the right? bool leftline; };