Skip to content

Commit

Permalink
Fixed build errors in WhatsAppPort
Browse files Browse the repository at this point in the history
  • Loading branch information
shirioko committed Jun 1, 2014
1 parent 47aaa17 commit 9271270
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion WhatsAppPort/frmUserChat.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ private void btnSend_Click(object sender, EventArgs e)
if (this.txtBxSentText.Text.Length == 0)
return;

WhatSocket.Instance.Message(this.user.WhatsUser.GetFullJid(), txtBxSentText.Text);
WhatSocket.Instance.SendMessage(this.user.WhatsUser.GetFullJid(), txtBxSentText.Text);
this.AddNewText(this.user.UserName, txtBxSentText.Text);
txtBxSentText.Clear();
}
Expand Down

0 comments on commit 9271270

Please sign in to comment.