]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormBrowser.C
get rid of broken_header.h and some unneeded tests
[lyx.git] / src / frontends / xforms / FormBrowser.C
index f75ff009a3032d59c8526dfec1fffe863aef5434..2cdacf7e74072aa440c211f6d26a39dfab93da09 100644 (file)
@@ -1,26 +1,37 @@
-/* FormBrowser.C
- * (C) 2001 LyX Team
- * John Levon, moz@compsoc.man.ac.uk
+/**
+ * \file FormBrowser.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author John Levon
+ *
+ * Full author contact details are available in file CREDITS.
  */
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
-
 #include <config.h>
+
 #include "FormBrowser.h"
-#include "form_browser.h"
+#include "forms/form_browser.h"
 #include "xformsBC.h"
 
-FormBrowser::FormBrowser(ControlButtons & c, string const & t, bool allowResize)
-       : FormDB<FD_form_browser>(c, t, allowResize)
+using std::string;
+
+namespace lyx {
+namespace frontend {
+
+FormBrowser::FormBrowser(Dialog & parent,
+                        string const & title, bool allowResize)
+       : FormView<FD_browser>(parent, title, allowResize)
 {}
-       
+
 
 void FormBrowser::build()
 {
-       dialog_.reset(build_browser());
+       dialog_.reset(build_browser(this));
 
        // Manage the close button
-       bc().setCancel(dialog_->button_close);
+       bcview().setCancel(dialog_->button_close);
 }
+
+} // namespace frontend
+} // namespace lyx