]> Shamusworld >> Repos - architektonas/blobdiff - src/widgets/recentfiles.cpp
Phase two of adding polyline functionality...
[architektonas] / src / widgets / recentfiles.cpp
index e5e6bc9ff4d49322ed21fc58698ae2e02867864c..45229fd907c4f4e8376297bc13048ce28586b8c2 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>
 //
@@ -15,7 +17,7 @@
 #include "recentfiles.h"
 
 #include "applicationwindow.h"
-#include "rs_debug.h"
+#include "debug.h"
 
 /**
  * Constructor
@@ -55,7 +57,7 @@ RecentFiles::~RecentFiles()
  */
 void RecentFiles::add(const QString & filename)
 {
-       RS_DEBUG->print("RecentFiles::add");
+       DEBUG->print("RecentFiles::add");
 
        // Is the file already in the list? Bail out if so...
        if (files.indexOf(filename) != -1)
@@ -67,7 +69,7 @@ void RecentFiles::add(const QString & filename)
        if ((int)files.count() > number)
                files.pop_front();
 
-       RS_DEBUG->print("RecentFiles::add: OK");
+       DEBUG->print("RecentFiles::add: OK");
 }
 
 /**