mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 10:00:33 +00:00
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:
parent
8df69fdedd
commit
8b52f51251
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user