make sure inserting a tabular invokes a dialog

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@10246 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jean-Marc Lasgouttes 2005-07-16 15:33:49 +00:00
parent 49d8c0d3e0
commit b0dd800145
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2005-07-16 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
* factory.C (createInset): fix bad logic for tabular creation
2005-07-16 Lars Gullik Bjønnes <larsbj@lyx.org>
* lyx_main.C (init): change some reLyX reference to tex2lyx

View File

@ -163,7 +163,7 @@ InsetBase * createInset(BufferView * bv, FuncRequest const & cmd)
}
case LFUN_TABULAR_INSERT: {
if (!cmd.argument.empty())
if (cmd.argument.empty())
return 0;
std::istringstream ss(cmd.argument);
int r = 0, c = 0;