mirror of
https://github.com/opensim/opensim.git
synced 2026-08-10 11:33:28 +08:00
renaming the increasingly ill-named ChatFromViewerArgs to OSChatMessage
This commit is contained in:
@@ -12,7 +12,7 @@ namespace OpenSim.Framework
|
||||
/// <summary>
|
||||
/// ChatFromViewer Arguments
|
||||
/// </summary>
|
||||
public class ChatFromViewerArgs : EventArgs, IEventArgs
|
||||
public class OSChatMessage : EventArgs, IEventArgs
|
||||
{
|
||||
protected int m_channel;
|
||||
protected string m_from;
|
||||
@@ -25,7 +25,7 @@ namespace OpenSim.Framework
|
||||
protected ChatTypeEnum m_type;
|
||||
protected LLUUID m_fromID;
|
||||
|
||||
public ChatFromViewerArgs()
|
||||
public OSChatMessage()
|
||||
{
|
||||
m_position = new LLVector3();
|
||||
}
|
||||
|
||||
@@ -37,7 +37,7 @@ namespace OpenSim.Framework
|
||||
|
||||
public delegate void ViewerEffectEventHandler(IClientAPI sender, List<ViewerEffectEventHandlerArg> args);
|
||||
|
||||
public delegate void ChatFromViewer(Object sender, ChatFromViewerArgs e);
|
||||
public delegate void ChatMessage(Object sender, OSChatMessage e);
|
||||
|
||||
public delegate void TextureRequest(Object sender, TextureRequestArgs e);
|
||||
|
||||
@@ -347,7 +347,7 @@ namespace OpenSim.Framework
|
||||
// [Obsolete("LLClientView Specific - Replace with more bare-bones arguments.")]
|
||||
event ImprovedInstantMessage OnInstantMessage;
|
||||
// [Obsolete("LLClientView Specific - Replace with more bare-bones arguments. Rename OnChat.")]
|
||||
event ChatFromViewer OnChatFromViewer;
|
||||
event ChatMessage OnChatFromViewer;
|
||||
// [Obsolete("LLClientView Specific - Replace with more bare-bones arguments.")]
|
||||
event TextureRequest OnRequestTexture;
|
||||
// [Obsolete("LLClientView Specific - Remove bitbuckets. Adam, can you be more specific here.. as I don't see any bit buckets.")]
|
||||
|
||||
Reference in New Issue
Block a user