From 59bd3253bafa13a46b7e1fdc1bbd97288091e0bf Mon Sep 17 00:00:00 2001 From: "rods%netscape.com" Date: Fri, 6 Aug 1999 14:42:00 +0000 Subject: [PATCH] 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 --- mozilla/layout/forms/nsComboboxControlFrame.cpp | 5 ++++- mozilla/layout/html/forms/src/nsComboboxControlFrame.cpp | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/mozilla/layout/forms/nsComboboxControlFrame.cpp b/mozilla/layout/forms/nsComboboxControlFrame.cpp index 0d3ec0b67b1..2c9a6b3faa9 100644 --- a/mozilla/layout/forms/nsComboboxControlFrame.cpp +++ b/mozilla/layout/forms/nsComboboxControlFrame.cpp @@ -1161,6 +1161,7 @@ nsComboboxControlFrame::GetSkipSides() const nsresult nsComboboxControlFrame::Focus(nsIDOMEvent* aEvent) { +#if 0 printf("nsComboboxControlFrame::Focus "); nsCOMPtr 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 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; } diff --git a/mozilla/layout/html/forms/src/nsComboboxControlFrame.cpp b/mozilla/layout/html/forms/src/nsComboboxControlFrame.cpp index 0d3ec0b67b1..2c9a6b3faa9 100644 --- a/mozilla/layout/html/forms/src/nsComboboxControlFrame.cpp +++ b/mozilla/layout/html/forms/src/nsComboboxControlFrame.cpp @@ -1161,6 +1161,7 @@ nsComboboxControlFrame::GetSkipSides() const nsresult nsComboboxControlFrame::Focus(nsIDOMEvent* aEvent) { +#if 0 printf("nsComboboxControlFrame::Focus "); nsCOMPtr 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 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; }