]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/Action.h
On Linux show in crash message box the backtrace
[lyx.git] / src / frontends / qt4 / Action.h
index 11a862b7887f278149638a74d16dac6c5e7bf0fd..54954c690070cd6fed36058036e6f55cebdbc1a5 100644 (file)
@@ -22,8 +22,6 @@ class FuncRequest;
 
 namespace frontend {
 
-class GuiView;
-
 /**
  * Action - Qt interface with LyX' FuncRequest.
  *
@@ -34,7 +32,7 @@ class Action : public QAction
        Q_OBJECT
 
 public:
-       Action(GuiView * lyxView, QIcon const & icon, QString const & text,
+       Action(QIcon const & icon, QString const & text,
                FuncRequest const & func, QString const & tooltip, QObject * parent);
 
        void update();
@@ -48,7 +46,6 @@ private Q_SLOTS:
 
 private:
        FuncRequest const & func_ ;
-       GuiView * lyxView_;
 };