mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-24 13:21:05 +00:00
Bug 1352339 - Add missing 'using namespace mozilla' to nsWindowDbg.cpp r=jwatt
Needed because LogLevel is in the 'mozilla' namespace, but this file uses it without qualification. MozReview-Commit-ID: 5o2KV1GlcqM --HG-- extra : rebase_source : 2b6bb2b6a6b0464b9c01c055101b23373d386c0f
This commit is contained in:
parent
5baa803bf8
commit
2f28a673b1
@ -11,8 +11,8 @@
|
||||
#include "nsWindowDbg.h"
|
||||
#include "WinUtils.h"
|
||||
|
||||
using namespace mozilla;
|
||||
using namespace mozilla::widget;
|
||||
|
||||
extern mozilla::LazyLogModule gWindowsLog;
|
||||
|
||||
#if defined(POPUP_ROLLUP_DEBUG_OUTPUT)
|
||||
@ -38,8 +38,8 @@ void PrintEvent(UINT msg, bool aShowAllEvents, bool aShowMouseMoves)
|
||||
}
|
||||
if (aShowAllEvents || (!aShowAllEvents && gLastEventMsg != (long)msg)) {
|
||||
if (aShowMouseMoves || (!aShowMouseMoves && msg != 0x0020 && msg != 0x0200 && msg != 0x0084)) {
|
||||
MOZ_LOG(gWindowsLog, LogLevel::Info,
|
||||
("%6d - 0x%04X %s\n", gEventCounter++, msg,
|
||||
MOZ_LOG(gWindowsLog, LogLevel::Info,
|
||||
("%6d - 0x%04X %s\n", gEventCounter++, msg,
|
||||
gAllEvents[inx].mStr ? gAllEvents[inx].mStr : "Unknown"));
|
||||
gLastEventMsg = msg;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user