]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiAbout.h
do what the FIXME suggested
[lyx.git] / src / frontends / qt4 / GuiAbout.h
index 5d1b8ccd273a4711951b1d739fade16809a52446..9b88d765affbcfa618be31d8427c67419cc476c9 100644 (file)
 #define GUIABOUT_H
 
 #include "GuiDialog.h"
-#include "ControlAboutlyx.h"
 #include "ui_AboutUi.h"
 
-#include <QDialog>
-
 namespace lyx {
 namespace frontend {
 
-class GuiAboutDialog : public GuiDialog, public Ui::AboutUi
+class GuiAbout : public GuiDialog, public Ui::AboutUi
 {
        Q_OBJECT
 
 public:
        // Constructor
-       GuiAboutDialog(LyXView & lv);
-       /// parent controller
-       ControlAboutlyx & controller() const;
+       GuiAbout(GuiView & lv);
+
+       // Controller stuff
+       bool initialiseParams(std::string const &) { return true; }
+       void clearParams() {}
+       void dispatchParams() {}
+       bool isBufferDependent() const { return false; }
 };
 
 } // namespace frontend