]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actioneditundo.cpp
Removed unnecessary RS_ prefix from classes and whatnot.
[architektonas] / src / actions / actioneditundo.cpp
index 98e7a212723e784b1a832d54204961d70a9c2a9d..11ed2fc2e4eb1e2c017b34764ee522c17151fa4a 100644 (file)
@@ -24,7 +24,7 @@
  *
  * @param undo true for undo and false for redo.
  */
-ActionEditUndo::ActionEditUndo(bool undo, RS_EntityContainer & container, GraphicView & graphicView): ActionInterface("Edit Undo", container, graphicView)
+ActionEditUndo::ActionEditUndo(bool undo, EntityContainer & container, GraphicView & graphicView): ActionInterface("Edit Undo", container, graphicView)
 {
        this->undo = undo;
 }
@@ -51,5 +51,5 @@ void ActionEditUndo::trigger()
        graphicView->redraw();
 
        finish();
-       RS_DIALOGFACTORY->updateSelectionWidget(container->countSelected());
+       DIALOGFACTORY->updateSelectionWidget(container->countSelected());
 }