add 'special' member to ColInfo

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7233 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
André Pönitz 2003-07-03 12:03:52 +00:00
parent 6a970ad5d8
commit 3e0e2103b5
2 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,6 @@
#include "math_support.h"
#include "math_mathmlstream.h"
#include "textpainter.h"
#include "Lsstream.h"
#include "BufferView.h"
#include "gettext.h"

View File

@ -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;
};