[OS/2] Bug 465691: fix debug output to compile again (CLOSED TREE)

This commit is contained in:
Peter Weilbacher 2008-11-24 20:18:15 +01:00
Родитель c3c99d5408
Коммит 06932e14c6
1 изменённых файлов: 3 добавлений и 2 удалений

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

@ -61,8 +61,9 @@ gfxOS2Font::gfxOS2Font(gfxOS2FontEntry *aFontEntry, const gfxFontStyle *aFontSty
mHinting(FC_HINT_MEDIUM), mAntialias(FcTrue)
{
#ifdef DEBUG_thebes_2
printf("gfxOS2Font[%#x]::gfxOS2Font(\"%s\", aFontStyle)\n",
(unsigned)this, NS_LossyConvertUTF16toASCII(aName).get());
printf("gfxOS2Font[%p]::gfxOS2Font(%p \"%s\", aFontStyle)\n",
(void *)this, (void *)aFontEntry,
NS_LossyConvertUTF16toASCII(aFontEntry->Name()).get());
#endif
// try to get the preferences for hinting, antialias, and embolden options
nsCOMPtr<nsIPrefBranch> prefbranch = do_GetService(NS_PREFSERVICE_CONTRACTID);