1
0
mirror of git://projects.qi-hardware.com/gmenu2x.git synced 2025-04-21 12:27:27 +03:00

Replaced every message output by calls to the log macros.

This commit is contained in:
Ayla
2010-09-17 22:31:09 +02:00
parent 7d0c0e958c
commit 7c9364780b
13 changed files with 85 additions and 85 deletions

View File

@@ -18,8 +18,11 @@
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <iostream>
#include "wallpaperdialog.h"
#include "filelister.h"
#include "debug.h"
using namespace std;
@@ -44,9 +47,8 @@ bool WallpaperDialog::exec()
for (uint i=0; i<fl.getFiles().size(); i++)
wallpapers.push_back(fl.getFiles()[i]);
}
#ifdef DEBUG
cout << "Wallpapers: " << wallpapers.size() << endl;
#endif
DEBUG("Wallpapers: %i\n", wallpapers.size());
uint i, selected = 0, firstElement = 0, iY;
while (!close) {