compile fix

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5001 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
André Pönitz 2002-08-15 17:30:41 +00:00
parent 5fab05e48a
commit 2113b05edd

View File

@ -262,7 +262,7 @@ extern "C" {
void gui_ShowDocument(LyXView & lv, Dialogs & d)
{
static FormDocument fd(&lv, &d);
static FormDocument fd(lv, d);
fd.show();
}
@ -357,7 +357,7 @@ extern "C" {
void gui_ShowMathPanel(LyXView & lv, Dialogs & d)
{
static FormMathsPanel fmp(&lv, &d);
static FormMathsPanel fmp(lv, d);
fmp.show();
}