]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/Action.h
move our stuff off the Q* namespace
[lyx.git] / src / frontends / qt4 / Action.h
index f40d7a3ee7b81017bbd05afcbe8a69cdb71db072..79bf2b5ff07676e9d11f8952a6a1a6f29795d369 100644 (file)
@@ -13,7 +13,7 @@
 #define ACTION_H
 
 #include "frontends/LyXView.h"
-#include "funcrequest.h"
+#include "FuncRequest.h"
 
 #include "support/docstring.h"
 
@@ -22,7 +22,7 @@
 namespace lyx {
 namespace frontend {
 
-class GuiView;
+class GuiViewBase;
 
 /**
  * Action - Qt interface with LyX' FuncRequest.
@@ -33,10 +33,10 @@ class Action : public QAction {
        Q_OBJECT
 public:
 
-       Action(GuiView & lyxView, docstring const & text,
+       Action(GuiViewBase & lyxView, docstring const & text,
                FuncRequest const & func, docstring const & tooltip = docstring());
 
-       Action(GuiView & lyxView, std::string const & icon, docstring const & text,
+       Action(GuiViewBase & lyxView, std::string const & icon, docstring const & text,
                FuncRequest const & func, docstring const & tooltip = docstring());
 
        void update();
@@ -52,7 +52,7 @@ private Q_SLOTS:
 
 private:
        FuncRequest const & func_ ;
-       GuiView & lyxView_;
+       GuiViewBase & lyxView_;
 };