fix Angus's forgotten initializations

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@947 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Allan Rae 2000-08-02 08:03:31 +00:00
parent 8df69fdedd
commit 8b52f51251
4 changed files with 7 additions and 3 deletions

View File

@ -1,5 +1,9 @@
2000-08-02 Allan Rae <rae@lyx.org>
* src/frontends/xforms/FormUrl.C (FormUrl): Initialise ALL variables.
* src/frontends/xforms/FormCitation.C (FormCitation): ditto
* src/frontends/xforms/FormToc.C (FormToc): ditto
* src/frontends/xforms/Makefile.am: A few forgotten files
* src/frontends/xforms/FormCommand.C (showInset): The rest of the

View File

@ -40,7 +40,7 @@ static vector<string> bibkeys;
static vector<string> bibkeysInfo;
FormCitation::FormCitation(LyXView * lv, Dialogs * d)
: FormCommand(lv, d, _("Citation"))
: FormCommand(lv, d, _("Citation")), dialog_(0)
{
// let the dialog be shown
// These are permanent connections so we won't bother

View File

@ -30,7 +30,7 @@
static vector<Buffer::TocItem> toclist;
FormToc::FormToc(LyXView * lv, Dialogs * d)
: FormCommand(lv, d, _("Table of Contents"))
: FormCommand(lv, d, _("Table of Contents")), dialog_(0)
{
// let the dialog be shown
// These are permanent connections so we won't bother

View File

@ -32,7 +32,7 @@
#include "support/filetools.h"
FormUrl::FormUrl(LyXView * lv, Dialogs * d)
: FormCommand(lv, d, _("Url"))
: FormCommand(lv, d, _("Url")), dialog_(0)
{
// let the dialog be shown
// These are permanent connections so we won't bother