]> Shamusworld >> Repos - architektonas/blobdiff - src/widgets/actionhandler.h
In the middle of chasing down MDI not activating bug, renaming of Graphic to
[architektonas] / src / widgets / actionhandler.h
index 5d3792e7e5fbb19f1b4ce0ef34a447d607e0e58d..abce3a55405b9ebfed44fc6cfee1c27d98294f0c 100644 (file)
@@ -2,7 +2,7 @@
 #define __ACTIONHANDLER_H__
 
 #include <QtGui>
-#include "rs.h"
+#include "enums.h"
 
 class QG_MainWindowInterface;
 class CadToolBarSnap;
@@ -11,13 +11,13 @@ class ActionInterface;
 /**
  * This class can trigger actions (from menus, buttons, ...).
  */
-class QG_ActionHandler: public QObject
+class ActionHandler: public QObject
 {
        Q_OBJECT
 
        public:
-               QG_ActionHandler(QG_MainWindowInterface * mw);
-               virtual ~QG_ActionHandler();
+               ActionHandler(QG_MainWindowInterface * mw);
+               virtual ~ActionHandler();
 
                ActionInterface * getCurrentAction();
                ActionInterface * setCurrentAction(RS2::ActionType id);
@@ -208,7 +208,7 @@ class QG_ActionHandler: public QObject
                void setCadToolBarSnap(CadToolBarSnap * tb);
 
        private:
-               QG_MainWindowInterface * mainWindow;
+               QG_MainWindowInterface * mainWindowIntf;
                CadToolBarSnap * cadToolBarSnap;
 
                QAction * snapFree;