X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Factionselectall.cpp;h=6cf276825c5db0e6049f72644d63e0004cde0812;hb=e1d1cacbb43055988d0d9db632fdf05c0bea9543;hp=a54df0bfa01339aae0bcdb79c3c9ad2eabf86403;hpb=3239ef39dcee08fa6e8cd68cdf2727fc68cc7a8c;p=architektonas diff --git a/src/actions/actionselectall.cpp b/src/actions/actionselectall.cpp index a54df0b..6cf2768 100644 --- a/src/actions/actionselectall.cpp +++ b/src/actions/actionselectall.cpp @@ -19,7 +19,7 @@ #include "dialogfactory.h" #include "selection.h" -ActionSelectAll::ActionSelectAll(RS_EntityContainer & container, +ActionSelectAll::ActionSelectAll(EntityContainer & container, GraphicView & graphicView, bool select): ActionInterface("Select All Entities", container, graphicView) { @@ -44,8 +44,8 @@ void ActionSelectAll::init(int status) void ActionSelectAll::trigger() { - RS_Selection s(*container, graphicView); + Selection s(*container, graphicView); s.selectAll(select); - RS_DIALOGFACTORY->updateSelectionWidget(container->countSelected()); + DIALOGFACTORY->updateSelectionWidget(container->countSelected()); }