remove useless now debugging output. fixes 274181

This commit is contained in:
zack%kde.org 2004-12-12 03:41:37 +00:00
Родитель be4764b98b
Коммит 351a576e96
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.
}