X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fwidgets%2Frecentfiles.cpp;h=45229fd907c4f4e8376297bc13048ce28586b8c2;hb=e1d1cacbb43055988d0d9db632fdf05c0bea9543;hp=c614601c90bd633681d88d4bc38f4734068930f7;hpb=865303923fcb231a171992b75a73364ff469ff8c;p=architektonas diff --git a/src/widgets/recentfiles.cpp b/src/widgets/recentfiles.cpp index c614601..45229fd 100644 --- a/src/widgets/recentfiles.cpp +++ b/src/widgets/recentfiles.cpp @@ -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"); } /**