X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Factionmodifyexplodetext.cpp;h=85bc2a4115c1fe098e33b45c0c6dd435957fbeab;hb=2ee84c5948ede7fc2f7b4435c5edef42a030ac05;hp=ee2efcc5f8dc14b1d50e8090c558595923dd9891;hpb=d774c2655ba2c3657a565f325411144452392277;p=architektonas diff --git a/src/actions/actionmodifyexplodetext.cpp b/src/actions/actionmodifyexplodetext.cpp index ee2efcc..85bc2a4 100644 --- a/src/actions/actionmodifyexplodetext.cpp +++ b/src/actions/actionmodifyexplodetext.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 // @@ -14,12 +16,12 @@ #include "actionmodifyexplodetext.h" -#include "rs_modification.h" +#include "modification.h" /** * Constructor. */ -ActionModifyExplodeText::ActionModifyExplodeText(RS_EntityContainer & container, +ActionModifyExplodeText::ActionModifyExplodeText(EntityContainer & container, GraphicView & graphicView): ActionInterface("Blocks Explode", container, graphicView) { @@ -44,6 +46,6 @@ void ActionModifyExplodeText::init(int status) void ActionModifyExplodeText::trigger() { - RS_Modification m(*container, graphicView); + Modification m(*container, graphicView); m.explodeTextIntoLetters(); }