]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actionfilesave.cpp
Initial phase of adding polyline functionality. DOES NOT COMPILE.
[architektonas] / src / actions / actionfilesave.cpp
index 363f99db8d2778b7c408941f6241cb3145dfda82..6324e23b7f8e897d17e63f0af9c40fe4dd7ec48d 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>
 //
@@ -16,7 +18,7 @@
 
 #include "drawing.h"
 
-ActionFileSave::ActionFileSave(RS_EntityContainer & container, GraphicView & graphicView):
+ActionFileSave::ActionFileSave(EntityContainer & container, GraphicView & graphicView):
        ActionInterface("File Save", container, graphicView)
 {
 }
@@ -27,7 +29,7 @@ ActionFileSave::~ActionFileSave()
 
 void ActionFileSave::trigger()
 {
-       RS_DEBUG->print("ActionFileSave::trigger");
+       DEBUG->print("ActionFileSave::trigger");
 
        if (graphic != NULL)
                graphic->save();