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