From 2168d947c5d8c07d0800f6772f7548db3e389ae1 Mon Sep 17 00:00:00 2001 From: "axel%pike.org" Date: Wed, 15 Feb 2006 15:45:43 +0000 Subject: [PATCH] bug 326149, bustage-fix for static PR_LOGGING builds, r=bsmedberg git-svn-id: svn://10.0.0.236/trunk@190113 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/widget/src/windows/nsDeviceContextSpecWin.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mozilla/widget/src/windows/nsDeviceContextSpecWin.cpp b/mozilla/widget/src/windows/nsDeviceContextSpecWin.cpp index 1092dc3e668..47578e255cb 100644 --- a/mozilla/widget/src/windows/nsDeviceContextSpecWin.cpp +++ b/mozilla/widget/src/windows/nsDeviceContextSpecWin.cpp @@ -70,8 +70,8 @@ #include "prlog.h" #ifdef PR_LOGGING -PRLogModuleInfo * kGfxPrintingLogMod = PR_NewLogModule("printing-widget"); -#define PR_PL(_p1) PR_LOG(kGfxPrintingLogMod, PR_LOG_DEBUG, _p1) +PRLogModuleInfo * kWidgetPrintingLogMod = PR_NewLogModule("printing-widget"); +#define PR_PL(_p1) PR_LOG(kWidgetPrintingLogMod, PR_LOG_DEBUG, _p1) #else #define PR_PL(_p1) #endif