Bug 1138669 - Remove key event from nsChildView crash log message. r=smichaud

Removed theEvent from the message.
This commit is contained in:
David Parks 2015-03-05 14:25:32 -08:00
Родитель 0dad1fee4b
Коммит 0906f6b9ed
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -5381,8 +5381,8 @@ static int32_t RoundUp(double aDouble)
if (mGeckoChild && mTextInputHandler && mTextInputHandler->IsFocused()) {
#ifdef MOZ_CRASHREPORTER
NSWindow* window = [self window];
NSString* info = [NSString stringWithFormat:@"\nview [%@], window [%@], key event [%@], window is key %i, is fullscreen %i, app is active %i",
self, window, theEvent, [window isKeyWindow], ([window styleMask] & (1 << 14)) != 0,
NSString* info = [NSString stringWithFormat:@"\nview [%@], window [%@], window is key %i, is fullscreen %i, app is active %i",
self, window, [window isKeyWindow], ([window styleMask] & (1 << 14)) != 0,
[NSApp isActive]];
nsAutoCString additionalInfo([info UTF8String]);
#endif