]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/Action.cpp
On Linux show in crash message box the backtrace
[lyx.git] / src / frontends / qt4 / Action.cpp
index 724d9daf8ba2ba658a7bd09f69e1fda69dd1d6ef..115111f27fc1db944a04bce0ef47255be37c4698 100644 (file)
@@ -14,8 +14,7 @@
 
 #include "FuncRequest.h"
 #include "FuncStatus.h"
-#include "GuiView.h"
-#include "LyXFunc.h"
+#include "LyX.h"
 #include "qt_helpers.h"
 
 #include "support/debug.h"
@@ -25,10 +24,10 @@ namespace lyx {
 namespace frontend {
 
 
-Action::Action(GuiView * lyxView, QIcon const & icon,
+Action::Action(QIcon const & icon,
          QString const & text, FuncRequest const & func,
          QString const & tooltip, QObject * parent)
-       : QAction(parent), func_(func), lyxView_(lyxView)
+       : QAction(parent), func_(func)
 {
        // only Qt/Mac handles that
        setMenuRole(NoRole);
@@ -45,10 +44,10 @@ void Action::update()
 {
        FuncStatus const status = getStatus(func_);
 
-       if (status.onoff(true)) {
+       if (status.onOff(true)) {
                setCheckable(true);
                setChecked(true);
-       } else if (status.onoff(false)) {
+       } else if (status.onOff(false)) {
                setCheckable(true);
                setChecked(false);
        } else {
@@ -61,10 +60,7 @@ void Action::update()
 
 void Action::action()
 {
-       //LYXERR(Debug::ACTION, "calling LyXFunc::dispatch: func_: ");
-
-       if (lyxView_)
-               theLyXFunc().setLyXView(lyxView_);
+       //LYXERR(Debug::ACTION, "calling lyx::dispatch: func_: ");
 
        lyx::dispatch(func_);
        triggered(this);
@@ -73,4 +69,4 @@ void Action::action()
 } // namespace frontend
 } // namespace lyx
 
-#include "Action_moc.cpp"
+#include "moc_Action.cpp"