]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actionselectinvert.cpp
Removed unnecessary RS_ prefix from classes and whatnot.
[architektonas] / src / actions / actionselectinvert.cpp
index eac8098172b588c2601771dc26986d270bdaedae..ecd20f9daba0462042c6898c6f05aca7e62e6fd1 100644 (file)
@@ -19,7 +19,7 @@
 #include "dialogfactory.h"
 #include "selection.h"
 
-ActionSelectInvert::ActionSelectInvert(RS_EntityContainer & container,
+ActionSelectInvert::ActionSelectInvert(EntityContainer & container,
        GraphicView & graphicView): ActionInterface("Invert Selection",
                container, graphicView)
 {
@@ -43,8 +43,8 @@ void ActionSelectInvert::init(int status)
 
 void ActionSelectInvert::trigger()
 {
-       RS_Selection s(*container, graphicView);
+       Selection s(*container, graphicView);
        s.invertSelection();
 
-       RS_DIALOGFACTORY->updateSelectionWidget(container->countSelected());
+       DIALOGFACTORY->updateSelectionWidget(container->countSelected());
 }