X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Factionselectall.cpp;h=6cf276825c5db0e6049f72644d63e0004cde0812;hb=e1d1cacbb43055988d0d9db632fdf05c0bea9543;hp=561fac7f7b992f8124c867d5a651d42b3b10b87b;hpb=865303923fcb231a171992b75a73364ff469ff8c;p=architektonas diff --git a/src/actions/actionselectall.cpp b/src/actions/actionselectall.cpp index 561fac7..6cf2768 100644 --- a/src/actions/actionselectall.cpp +++ b/src/actions/actionselectall.cpp @@ -16,10 +16,10 @@ #include "actionselectall.h" -#include "rs_dialogfactory.h" -#include "rs_selection.h" +#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()); }