X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Factionblocksremove.cpp;h=180b8ef96442ac98d50d207b9f3c1fbe0dfbaa7f;hb=2ee84c5948ede7fc2f7b4435c5edef42a030ac05;hp=1eaf12bfec6e3c00da8eb366ca07d3742777e4ff;hpb=3239ef39dcee08fa6e8cd68cdf2727fc68cc7a8c;p=architektonas diff --git a/src/actions/actionblocksremove.cpp b/src/actions/actionblocksremove.cpp index 1eaf12b..180b8ef 100644 --- a/src/actions/actionblocksremove.cpp +++ b/src/actions/actionblocksremove.cpp @@ -22,7 +22,7 @@ #include "graphicview.h" #include "insert.h" -ActionBlocksRemove::ActionBlocksRemove(RS_EntityContainer & container, GraphicView & graphicView): +ActionBlocksRemove::ActionBlocksRemove(EntityContainer & container, GraphicView & graphicView): ActionInterface("Remove Block", container, graphicView) { } @@ -33,16 +33,16 @@ ActionBlocksRemove::~ActionBlocksRemove() void ActionBlocksRemove::trigger() { - RS_DEBUG->print("ActionBlocksRemove::trigger"); + DEBUG->print("ActionBlocksRemove::trigger"); if (graphic) { - RS_Block * block = RS_DIALOGFACTORY->requestBlockRemovalDialog(graphic->getBlockList()); + Block * block = DIALOGFACTORY->requestBlockRemovalDialog(graphic->getBlockList()); // list of containers that might refer to the block via inserts: - QList containerList; + QList containerList; containerList.append(graphic); - RS_BlockList * blkLst = graphic->getBlockList(); + BlockList * blkLst = graphic->getBlockList(); for(uint bi=0; bicount(); bi++) containerList.append(blkLst->at(bi)); @@ -51,7 +51,7 @@ void ActionBlocksRemove::trigger() { for(int i=0; ifirstEntity(RS2::ResolveNone); e!=NULL; + for(Entity * e=cont->firstEntity(RS2::ResolveNone); e!=NULL; e=cont->nextEntity(RS2::ResolveNone)) { if (e->rtti() == RS2::EntityInsert) { - RS_Insert * ins = (RS_Insert *)e; + Insert * ins = (Insert *)e; if (ins->getName() == block->getName()) { @@ -79,8 +79,8 @@ void ActionBlocksRemove::trigger() } // close all windows that are editing this block: - if (RS_DIALOGFACTORY) - RS_DIALOGFACTORY->closeEditBlockWindow(block); + if (DIALOGFACTORY) + DIALOGFACTORY->closeEditBlockWindow(block); // Now remove the block from the block list: graphic->removeBlock(block); @@ -90,7 +90,7 @@ void ActionBlocksRemove::trigger() } finish(); - RS_DIALOGFACTORY->updateSelectionWidget(container->countSelected()); + DIALOGFACTORY->updateSelectionWidget(container->countSelected()); } void ActionBlocksRemove::init(int status)