]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actionselectall.cpp
Phase two of adding polyline functionality...
[architektonas] / src / actions / actionselectall.cpp
index 4abe16393a432ca60f573cbb448021a55c569201..6cf276825c5db0e6049f72644d63e0004cde0812 100644 (file)
@@ -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 <jlhamm@acm.org>
 //
 
 #include "actionselectall.h"
 
-#include "rs_dialogfactory.h"
-#include "rs_selection.h"
+#include "dialogfactory.h"
+#include "selection.h"
 
-ActionSelectAll::ActionSelectAll(RS_EntityContainer & container,
+ActionSelectAll::ActionSelectAll(EntityContainer & container,
        GraphicView & graphicView, bool select):
        ActionInterface("Select All Entities", container, graphicView)
 {
@@ -42,8 +44,8 @@ void ActionSelectAll::init(int status)
 
 void ActionSelectAll::trigger()
 {
-       RS_Selection s(*container, graphicView);
+       Selection s(*container, graphicView);
        s.selectAll(select);
 
-       RS_DIALOGFACTORY->updateSelectionWidget(container->countSelected());
+       DIALOGFACTORY->updateSelectionWidget(container->countSelected());
 }