]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actionprintpreview.cpp
Bugfixes related to removing Snapper class.
[architektonas] / src / actions / actionprintpreview.cpp
index a253f22e6b6c8f9fe1a8683eb1c26984e46f29ca..ada1c137de9d5c995991337f47124d0807b71be8 100644 (file)
 
 #include "actionprintpreview.h"
 
-#include "rs_dialogfactory.h"
+#include "dialogfactory.h"
 #include "drawing.h"
 #include "graphicview.h"
 
 /**
  * Constructor.
  */
-ActionPrintPreview::ActionPrintPreview(RS_EntityContainer & container, GraphicView & graphicView):
+ActionPrintPreview::ActionPrintPreview(EntityContainer & container, GraphicView & graphicView):
        ActionInterface("Print Preview", container, graphicView)
 {
        showOptions();
@@ -97,7 +97,7 @@ void ActionPrintPreview::mouseReleaseEvent(QMouseEvent * e)
                break;
 
        default:
-               RS_DIALOGFACTORY->requestPreviousMenu();
+               DIALOGFACTORY->requestPreviousMenu();
                e->accept();
                break;
        }
@@ -107,7 +107,7 @@ void ActionPrintPreview::coordinateEvent(Vector *)
 {
 }
 
-void ActionPrintPreview::commandEvent(RS_CommandEvent *)
+void ActionPrintPreview::commandEvent(CommandEvent *)
 {
 }
 
@@ -121,14 +121,14 @@ void ActionPrintPreview::showOptions()
 {
        ActionInterface::showOptions();
 
-       RS_DIALOGFACTORY->requestOptions(this, true);
+       DIALOGFACTORY->requestOptions(this, true);
 }
 
 void ActionPrintPreview::hideOptions()
 {
        ActionInterface::hideOptions();
 
-       RS_DIALOGFACTORY->requestOptions(this, false);
+       DIALOGFACTORY->requestOptions(this, false);
 }
 
 void ActionPrintPreview::updateMouseButtonHints()