Fix bug with the layout combox.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@206 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jean-Marc Lasgouttes 1999-10-19 10:32:10 +00:00
parent dfd6aaa245
commit 1faa3c56ed
2 changed files with 8 additions and 3 deletions

View File

@ -1,7 +1,12 @@
1999-10-19 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* src/lyx_cb.C (LayoutsCB): fix bug where int was added to a
string.
1999-10-18 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* src/lyxrc.C (Read): RC_PRINTEXSTRAOPTIONS now uses
LyXLex::netx() and not eatline() to get its argument.
LyXLex::next() and not eatline() to get its argument.
1999-10-16 Lars Gullik Bjønnes <larsbj@lyx.org>

View File

@ -17,6 +17,7 @@
#include <cstdlib>
#include "LString.h"
#include "support/lstrings.h"
#include "lyx_main.h"
#include FORMS_H_LOCATION
#include "lyx.h"
@ -1220,8 +1221,7 @@ void FootCB(FL_OBJECT*, long)
void LayoutsCB(int sel, void *)
{
string tmp;
tmp += sel;
string tmp = tostr(sel);
current_view->getOwner()->getLyXFunc()->Dispatch(LFUN_LAYOUTNO,
tmp.c_str());
}