]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actionmodifydeletequick.h
Removed unnecessary RS_ prefix from classes and whatnot.
[architektonas] / src / actions / actionmodifydeletequick.h
index 981b54a811538b92494ababb7ec0a3c0ef9f349f..b70d33a4b2f35b1cd012fcf308780ecaf2d6b935 100644 (file)
@@ -3,7 +3,7 @@
 
 #include "actioninterface.h"
 
-class RS_Entity;
+class Entity;
 
 /**
  * This action class can handle user events to delete entities
@@ -15,7 +15,7 @@ class RS_Entity;
 class ActionModifyDeleteQuick: public ActionInterface
 {
        public:
-               ActionModifyDeleteQuick(RS_EntityContainer & container, GraphicView & graphicView);
+               ActionModifyDeleteQuick(EntityContainer & container, GraphicView & graphicView);
                ~ActionModifyDeleteQuick();
 
                virtual void trigger();
@@ -24,7 +24,7 @@ class ActionModifyDeleteQuick: public ActionInterface
                virtual void updateMouseCursor();
 
        private:
-               RS_Entity * en;
+               Entity * en;
 };
 
 #endif // __ACTIONMODIFYDELETEQUICK_H__