]> Shamusworld >> Repos - architektonas/blobdiff - src/forms/cadtoolbarselect.h
Bugfixes related to removing Snapper class.
[architektonas] / src / forms / cadtoolbarselect.h
index 03a157dadadf8b7628ac5463f982f5296e20020b..34ea3138f729c2b7096c0f4af21830bb93e25d90 100644 (file)
@@ -4,8 +4,8 @@
 #include <QtGui>
 
 class CadToolBar;
-class QG_ActionHandler;
-class RS_ActionInterface;
+class ActionHandler;
+class ActionInterface;
 
 class CadToolBarSelect: public QWidget
 {
@@ -15,7 +15,7 @@ class CadToolBarSelect: public QWidget
                CadToolBarSelect(CadToolBar * parent, Qt::WindowFlags flags = 0);
                ~CadToolBarSelect();
 
-               void setSelectAction(RS_ActionInterface * selectAction);
+               void setSelectAction(ActionInterface * selectAction);
                void setNextAction(int nextAction);
 
        public slots:
@@ -23,8 +23,8 @@ class CadToolBarSelect: public QWidget
 
        private:
                QToolButton * doit;
-               QG_ActionHandler * actionHandler;
-               RS_ActionInterface * selectAction;
+               ActionHandler * actionHandler;
+               ActionInterface * selectAction;
                int nextAction;
 };