FIx for bug 73041. SendMsg now has only two parameters. SR=sspitzer

git-svn-id: svn://10.0.0.236/trunk@90293 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
ducarroz%netscape.com
2001-03-24 00:10:59 +00:00
parent be8b6da149
commit 4a449261e5

View File

@@ -1100,12 +1100,12 @@ function GenericSendMessage( msgType )
try {
windowLocked = true;
CommandUpdate_MsgCompose();
msgCompose.SendMsg(msgType, getCurrentIdentity(), null);
msgCompose.SendMsg(msgType, getCurrentIdentity());
contentChanged = false;
msgCompose.bodyModified = false;
}
catch (ex) {
dump("failed to SendMsg\n");
dump("failed to SendMsg: " + ex + "\n");
windowLocked = false;
CommandUpdate_MsgCompose();
}