]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormBibitem.C
fix crash with "save as"
[lyx.git] / src / frontends / xforms / FormBibitem.C
index a4a6de241a764ea3d75ba5cf8fff16404471b265..515120b334aed552984f8af8faf2c9821215e9b8 100644 (file)
@@ -1,10 +1,12 @@
 /**
  * \file FormBibitem.C
- * Copyright 2001 the LyX Team
- * Read the file COPYING
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- * \author Angus Leeming, a.leeming@ic.ac.uk
- * \author John Levon, moz@compsoc.man.ac.uk
+ * \author Angus Leeming 
+ * \author John Levon
+ *
+ * Full author contact details are available in file CREDITS
  */
 
 #ifdef __GNUG__
 #include "xformsBC.h"
 #include "ControlBibitem.h"
 #include "FormBibitem.h"
-#include "form_bibitem.h"
+#include "Tooltips.h"
+#include "forms/form_bibitem.h"
+#include FORMS_H_LOCATION
 #include "gettext.h"
 #include "support/lstrings.h" // compare
 
-typedef FormCB<ControlBibitem, FormDB<FD_form_bibitem> > base_class;
+typedef FormCB<ControlBibitem, FormDB<FD_bibitem> > base_class;
 
-FormBibitem::FormBibitem(ControlBibitem & c)
-       : base_class(c, _("Bibliography Entry"))
+FormBibitem::FormBibitem()
+       : base_class(_("Bibliography Entry"))
 {}
 
 
 void FormBibitem::build()
 {
-       dialog_.reset(build_bibitem());
+       dialog_.reset(build_bibitem(this));
 
        fl_set_input_return(dialog_->input_key,   FL_RETURN_CHANGED);
        fl_set_input_return(dialog_->input_label, FL_RETURN_CHANGED);
@@ -42,6 +46,12 @@ void FormBibitem::build()
 
        bc().addReadOnly(dialog_->input_key);
        bc().addReadOnly(dialog_->input_label);
+
+       // set up the tooltips
+       string str = _("Key used within LyX document.");
+       tooltips().init(dialog_->input_key, str);
+       str = _("Label used for final output.");
+       tooltips().init(dialog_->input_label, str);
 }