Remove my name from a debug printf

This commit is contained in:
akkana%netscape.com 1999-12-21 00:39:43 +00:00
Родитель 66dad8a9a4
Коммит 23f6166708
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -1484,13 +1484,13 @@ nsXULKeyListenerImpl::HandleEventUsingKeyset(nsIDOMElement* aKeysetElement, nsID
switch(aEventType) {
case eKeyPress:
keyElement->GetAttribute(nsAutoString("onkeypress"), cmdToExecute);
#if defined(DEBUG_saari) || defined(DEBUG_akkana)
#if defined(DEBUG_saari)
printf("onkeypress = %s\n",
cmdToExecute.ToNewCString());
#endif
keyElement->GetAttribute(nsAutoString("oncommand"), oncommand);
#if defined(DEBUG_saari) || defined(DEBUG_akkana)
#if defined(DEBUG_saari)
printf("oncommand = %s\n", oncommand.ToNewCString());
#endif
break;