ifdef'ed out the ambigous compiler error for Linux, this code isn't being used at the moment

git-svn-id: svn://10.0.0.236/trunk@42455 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
rods%netscape.com
1999-08-06 14:42:00 +00:00
parent cabf5dbb16
commit 59bd3253ba
2 changed files with 8 additions and 2 deletions

View File

@@ -1161,6 +1161,7 @@ nsComboboxControlFrame::GetSkipSides() const
nsresult
nsComboboxControlFrame::Focus(nsIDOMEvent* aEvent)
{
#if 0
printf("nsComboboxControlFrame::Focus ");
nsCOMPtr<nsIDOMNode> node;
@@ -1194,13 +1195,14 @@ nsComboboxControlFrame::Focus(nsIDOMEvent* aEvent)
printf("After ------------------------\n");
NS_RELEASE(stateManager);
}
#endif
return NS_OK;
}
nsresult
nsComboboxControlFrame::Blur(nsIDOMEvent* aEvent)
{
#if 0
printf("nsComboboxControlFrame::Blur ");
nsCOMPtr<nsIDOMNode> node;
aEvent->GetTarget(getter_AddRefs(node));
@@ -1213,6 +1215,7 @@ nsComboboxControlFrame::Blur(nsIDOMEvent* aEvent)
} else if (content == mButtonContent) {
printf("Button\n");
}
#endif
return NS_OK;
}