X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fforms%2Fcadtoolbarselect.h;h=34ea3138f729c2b7096c0f4af21830bb93e25d90;hb=f62cebc26c7c3af447f0e4e4c43331f8589dce22;hp=03a157dadadf8b7628ac5463f982f5296e20020b;hpb=c5e595b3156fdf5f93ab6a1032dcc77e859ac6fa;p=architektonas diff --git a/src/forms/cadtoolbarselect.h b/src/forms/cadtoolbarselect.h index 03a157d..34ea313 100644 --- a/src/forms/cadtoolbarselect.h +++ b/src/forms/cadtoolbarselect.h @@ -4,8 +4,8 @@ #include 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; };