]> Shamusworld >> Repos - architektonas/blobdiff - src/widgets/recentfiles.cpp
Phase two of adding polyline functionality...
[architektonas] / src / widgets / recentfiles.cpp
index c614601c90bd633681d88d4bc38f4734068930f7..45229fd907c4f4e8376297bc13048ce28586b8c2 100644 (file)
@@ -17,7 +17,7 @@
 #include "recentfiles.h"
 
 #include "applicationwindow.h"
-#include "rs_debug.h"
+#include "debug.h"
 
 /**
  * Constructor
@@ -57,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)
@@ -69,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");
 }
 
 /**