X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Factionprintpreview.cpp;h=ada1c137de9d5c995991337f47124d0807b71be8;hb=5adb444f3e523d3fd028617ced72d1ea6661db21;hp=a253f22e6b6c8f9fe1a8683eb1c26984e46f29ca;hpb=865303923fcb231a171992b75a73364ff469ff8c;p=architektonas diff --git a/src/actions/actionprintpreview.cpp b/src/actions/actionprintpreview.cpp index a253f22..ada1c13 100644 --- a/src/actions/actionprintpreview.cpp +++ b/src/actions/actionprintpreview.cpp @@ -16,14 +16,14 @@ #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()