]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actionselectall.cpp
Removed unnecessary RS_ prefix from classes and whatnot.
[architektonas] / src / actions / actionselectall.cpp
index a54df0bfa01339aae0bcdb79c3c9ad2eabf86403..6cf276825c5db0e6049f72644d63e0004cde0812 100644 (file)
@@ -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());
 }