From 8e0cc74dc3f549ada396dbb12ea3f820bd97502c Mon Sep 17 00:00:00 2001 From: "sspitzer%netscape.com" Date: Sat, 8 May 1999 17:47:00 +0000 Subject: [PATCH] fix spelling mistake and wrap printf behind #ifdef DEBUG --- widget/src/gtk/nsAppShell.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/widget/src/gtk/nsAppShell.cpp b/widget/src/gtk/nsAppShell.cpp index d2f1c780b02c..4446276ed48a 100644 --- a/widget/src/gtk/nsAppShell.cpp +++ b/widget/src/gtk/nsAppShell.cpp @@ -171,7 +171,10 @@ NS_METHOD nsAppShell::Run() return rv; } - printf("Got thew event queue from the service\n"); +#ifdef DEBUG + printf("Got the event queue from the service\n"); +#endif /* DEBUG */ + //Get the event queue for the thread. rv = mEventQService->GetThreadEventQueue(PR_GetCurrentThread(), &EQueue);