remove useless now debugging output. fixes 274181

This commit is contained in:
zack%kde.org 2006-01-11 21:28:53 +00:00
Родитель 51080f1c38
Коммит ca41e7697f
1 изменённых файлов: 0 добавлений и 17 удалений

Просмотреть файл

@ -44,31 +44,14 @@
#include "qapplication.h"
#include "qtlog.h"
#ifdef DEBUG
PRUint32 gSMCount = 0;
PRUint32 gSMID = 0;
#endif
nsScreenManagerQt::nsScreenManagerQt()
{
#ifdef DEBUG
gSMCount++;
mID = gSMID++;
PR_LOG(gQtLogModule, QT_BASIC,
("nsScreenManagerQt CTOR (%p) ID: %d, Count: %d\n", this, mID, gSMCount));
#endif
desktop = 0;
}
nsScreenManagerQt::~nsScreenManagerQt()
{
#ifdef DEBUG
gSMCount--;
PR_LOG(gQtLogModule, QT_BASIC,
("nsScreenManagerQt DTOR (%p) ID: %d, Count: %d\n", this, mID, gSMCount));
#endif
// nothing to see here.
}