- Updating the debug/logging code thats still included

This commit is contained in:
Jerry.Kirk%Nexwarecorp.com 1999-06-22 11:46:26 +00:00
Родитель 06c8469202
Коммит 3c66304939
1 изменённых файлов: 4 добавлений и 4 удалений

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

@ -260,20 +260,20 @@ PR_LOG(PhWidLog, PR_LOG_DEBUG,("nsWidgetFactory::CreateInstance\n"));
inst = (nsISupports*)(nsILabel *)new nsLabel();
}
else if (mClassID.Equals(kCClipboard)) {
printf( "Creating nsClipboard instance.\n" );
PR_LOG(PhWidLog, PR_LOG_DEBUG,("nsWidgetFactory::CreateInstance of nsClipboard\n"));
inst = (nsISupports*)(nsBaseClipboard *)new nsClipboard();
}
else if (mClassID.Equals(kCXIFFormatConverter)) {
printf( "Creating nsXIFFormatConverter instance.\n" );
PR_LOG(PhWidLog, PR_LOG_DEBUG,( "nsWidgetFactory::CreateInstance of nsXIFFormatConverter\n" ));
inst = (nsISupports*)new nsXIFFormatConverter();
}
else if (mClassID.Equals(kCFileSpecWithUI))
{
printf( "Creating nsFileSpecWithUIImpl instance.\n" );
PR_LOG(PhWidLog, PR_LOG_DEBUG,( "nsWidgetFactory::CreateInstance of nsFileSpecWithUIImpl\n" ));
inst = (nsISupports*) (nsIFileSpecWithUI *) new nsFileSpecWithUIImpl;
}
else if (mClassID.Equals(kCTransferable)) {
printf( "Creating nsTransferable instance.\n" );
PR_LOG(PhWidLog, PR_LOG_DEBUG,( "nsWidgetFactory::CreateInstance of nsTransferable\n" ));
inst = (nsISupports*)new nsTransferable();
}