* GuiTabular.cpp:

- fix console warning about unknown feature. 

Not sure if SET_SPECIAL_MULTIROW is supposed to do something eventually, but if not, specialAlignmentED should probably be disabled in multirows.


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@35928 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jürgen Spitzmüller 2010-10-30 10:41:46 +00:00
parent 3bb31a04dd
commit 023afde520

View File

@ -442,7 +442,8 @@ docstring GuiTabular::dialogToParams() const
if (multicolumnCB->isChecked())
setParam(param_str, Tabular::SET_SPECIAL_MULTICOLUMN, special);
else if (multirowCB->isChecked())
setParam(param_str, Tabular::SET_SPECIAL_MULTIROW, special);
//FIXME SET_SPECIAL_MULTIROW not implemented!
setParam(param_str, Tabular::SET_SPECIAL_MULTIROW);
else
setParam(param_str, Tabular::SET_SPECIAL_COLUMN, special);