]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiImplementation.h
some remnaming
[lyx.git] / src / frontends / qt4 / GuiImplementation.h
index 08b22589e5dce785613762b56a0b3d5764ee9087..b88c2f211e5325d6fed2f79c654677704a2714fd 100644 (file)
 namespace lyx {
 namespace frontend {
 
-class GuiView;
+class GuiViewBase;
 class LyXView;
 
 /**
  * The GuiImplementation class is the interface to all Qt4 components.
  */
-class GuiImplementation: public QObject, public Gui
+class GuiImplementation : public QObject, public Gui
 {
        Q_OBJECT
 
@@ -36,7 +36,6 @@ public:
        GuiImplementation();
        virtual ~GuiImplementation() {}
 
-
        virtual LyXView& createRegisteredView();
        virtual bool closeAllViews();
        virtual bool unregisterView(int id);
@@ -51,7 +50,7 @@ private:
        * object is handled by Qt when the view is closed
        * \sa Qt::WA_DeleteOnClose attribute.
        */
-       std::map<int, GuiView *> views_;
+       std::map<int, GuiViewBase *> views_;
 };
 
 } // namespace frontend