From 6f8f2860c3b60a0597394aa74168618ef5d9e4ca Mon Sep 17 00:00:00 2001 From: "sspitzer%netscape.com" Date: Thu, 22 Mar 2001 01:55:30 +0000 Subject: [PATCH] the interface changed, but the js never did. this caused and error which prevented us from closing the window. sr=mscott git-svn-id: svn://10.0.0.236/trunk@90058 18797224-902f-48f8-a5cc-f745e15eee43 --- .../addrbook/resources/content/abSelectAddressesDialog.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mozilla/mailnews/addrbook/resources/content/abSelectAddressesDialog.js b/mozilla/mailnews/addrbook/resources/content/abSelectAddressesDialog.js index 60de54f8b78..a792b70accd 100644 --- a/mozilla/mailnews/addrbook/resources/content/abSelectAddressesDialog.js +++ b/mozilla/mailnews/addrbook/resources/content/abSelectAddressesDialog.js @@ -154,9 +154,9 @@ function SelectAddressOKButton() return false; } // reset the UI in compose window - msgCompFields.SetTo(toAddress); - msgCompFields.SetCc(ccAddress); - msgCompFields.SetBcc(bccAddress); + msgCompFields.to = toAddress; + msgCompFields.cc = ccAddress; + msgCompFields.bcc = bccAddress; top.composeWindow.CompFields2Recipients(top.msgCompFields); return true;