X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Factionfilenew.cpp;h=e582eb55dfcacc9d92c5ae753e828db530dbf715;hb=f62cebc26c7c3af447f0e4e4c43331f8589dce22;hp=e44f3d0bf612d8fb7fdd832c3715cb88b11ea145;hpb=d774c2655ba2c3657a565f325411144452392277;p=architektonas diff --git a/src/actions/actionfilenew.cpp b/src/actions/actionfilenew.cpp index e44f3d0..e582eb5 100644 --- a/src/actions/actionfilenew.cpp +++ b/src/actions/actionfilenew.cpp @@ -3,7 +3,9 @@ // Part of the Architektonas Project // Originally part of QCad Community Edition by Andrew Mustun // Extensively rewritten and refactored by James L. Hammons -// (C) 2010 Underground Software +// Portions copyright (C) 2001-2003 RibbonSoft +// Copyright (C) 2010 Underground Software +// See the README and GPLv2 files for licensing and warranty information // // JLH = James L. Hammons // @@ -16,7 +18,7 @@ //#include "drawing.h" -ActionFileNew::ActionFileNew(RS_EntityContainer & container, GraphicView & graphicView): +ActionFileNew::ActionFileNew(EntityContainer & container, GraphicView & graphicView): ActionInterface("File New", container, graphicView) { } @@ -29,9 +31,9 @@ void ActionFileNew::trigger() { /* // Not supported currently - RS_DEBUG->print("ActionFileNew::trigger"); + DEBUG->print("ActionFileNew::trigger"); - QString fileName; //= RS_DIALOGFACTORY->requestFileNewDialog(); + QString fileName; //= DIALOGFACTORY->requestFileNewDialog(); if (graphic!=NULL && !fileName.isEmpty()) { graphic->open(fileName, ); }