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