]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actionfilenew.cpp
In the middle of major refactoring...
[architektonas] / src / actions / actionfilenew.cpp
similarity index 62%
rename from src/actions/rs_actionfilenew.cpp
rename to src/actions/actionfilenew.cpp
index 6ed300a995850277967e460862c77a37da6a8331..e44f3d0bf612d8fb7fdd832c3715cb88b11ea145 100644 (file)
@@ -1,4 +1,4 @@
-// rs_actionfilenew.cpp
+// actionfilenew.cpp
 //
 // Part of the Architektonas Project
 // Originally part of QCad Community Edition by Andrew Mustun
 // JLH  06/04/2010  Added this text. :-)
 //
 
-#include "rs_actionfilenew.h"
+#include "actionfilenew.h"
 
 //#include "drawing.h"
 
-RS_ActionFileNew::RS_ActionFileNew(RS_EntityContainer & container, GraphicView & graphicView):
-       RS_ActionInterface("File New", container, graphicView)
+ActionFileNew::ActionFileNew(RS_EntityContainer & container, GraphicView & graphicView):
+       ActionInterface("File New", container, graphicView)
 {
 }
 
-RS_ActionFileNew::~RS_ActionFileNew()
+ActionFileNew::~ActionFileNew()
 {
 }
 
-void RS_ActionFileNew::trigger()
+void ActionFileNew::trigger()
 {
        /*
           // Not supported currently
-          RS_DEBUG->print("RS_ActionFileNew::trigger");
+          RS_DEBUG->print("ActionFileNew::trigger");
 
           QString fileName; //= RS_DIALOGFACTORY->requestFileNewDialog();
           if (graphic!=NULL && !fileName.isEmpty()) {
@@ -39,9 +39,8 @@ void RS_ActionFileNew::trigger()
        finish();
 }
 
-void RS_ActionFileNew::init(int status)
+void ActionFileNew::init(int status)
 {
-       RS_ActionInterface::init(status);
+       ActionInterface::init(status);
        trigger();
 }
-