]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/Action.cpp
header cleanup
[lyx.git] / src / frontends / qt4 / Action.cpp
index 16996b410ffedc779e225b5cf01a134ea771c142..c048729970d449da4f22c457a580ee980bd485f9 100644 (file)
@@ -12,7 +12,7 @@
 
 #include "Action.h"
 
-#include "debug.h"
+#include "support/debug.h"
 #include "FuncRequest.h"
 #include "FuncStatus.h"
 #include "GuiView.h"
@@ -62,7 +62,8 @@ void Action::update()
 void Action::action()
 {
        //LYXERR(Debug::ACTION, "calling LyXFunc::dispatch: func_: ");
-       lyxView_.dispatch(func_);
+       theLyXFunc().setLyXView(&lyxView_);
+       lyx::dispatch(func_);
        triggered(this);
 }