Removing LL prefix from all basic types

git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@1998 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
John Hurliman
2008-07-25 05:15:05 +00:00
parent ad8fdb1edf
commit 81e6342d36
162 changed files with 3170 additions and 3171 deletions

View File

@@ -16,10 +16,10 @@ namespace groupmanager
Group Group;
GridClient Client;
GroupProfile Profile = new GroupProfile();
Dictionary<LLUUID, GroupMember> Members = new Dictionary<LLUUID,GroupMember>();
Dictionary<LLUUID, GroupTitle> Titles = new Dictionary<LLUUID,GroupTitle>();
Dictionary<LLUUID, GroupMemberData> MemberData = new Dictionary<LLUUID, GroupMemberData>();
Dictionary<LLUUID, string> Names = new Dictionary<LLUUID, string>();
Dictionary<UUID, GroupMember> Members = new Dictionary<UUID,GroupMember>();
Dictionary<UUID, GroupTitle> Titles = new Dictionary<UUID,GroupTitle>();
Dictionary<UUID, GroupMemberData> MemberData = new Dictionary<UUID, GroupMemberData>();
Dictionary<UUID, string> Names = new Dictionary<UUID, string>();
GroupManager.GroupProfileCallback GroupProfileCallback;
GroupManager.GroupMembersCallback GroupMembersCallback;
GroupManager.GroupTitlesCallback GroupTitlesCallback;
@@ -72,7 +72,7 @@ namespace groupmanager
{
Profile = profile;
if (Group.InsigniaID != LLUUID.Zero)
if (Group.InsigniaID != UUID.Zero)
Client.Assets.RequestImage(Group.InsigniaID, ImageType.Normal, 113000.0f, 0);
if (this.InvokeRequired)
@@ -105,11 +105,11 @@ namespace groupmanager
Client.Avatars.RequestAvatarName(Profile.FounderID);
}
private void AvatarNamesHandler(Dictionary<LLUUID, string> names)
private void AvatarNamesHandler(Dictionary<UUID, string> names)
{
lock (Names)
{
foreach (KeyValuePair<LLUUID, string> agent in names)
foreach (KeyValuePair<UUID, string> agent in names)
{
Names[agent.Key] = agent.Value;
}
@@ -128,14 +128,14 @@ namespace groupmanager
{
lock (Names)
{
if (Profile.FounderID != LLUUID.Zero && Names.ContainsKey(Profile.FounderID))
if (Profile.FounderID != UUID.Zero && Names.ContainsKey(Profile.FounderID))
{
lblFoundedBy.Text = "Founded by " + Names[Profile.FounderID];
}
lock (MemberData)
{
foreach (KeyValuePair<LLUUID, string> name in Names)
foreach (KeyValuePair<UUID, string> name in Names)
{
if (!MemberData.ContainsKey(name.Key))
{
@@ -198,7 +198,7 @@ namespace groupmanager
}
}
private void GroupMembersHandler(Dictionary<LLUUID, GroupMember> members)
private void GroupMembersHandler(Dictionary<UUID, GroupMember> members)
{
Members = members;
@@ -213,7 +213,7 @@ namespace groupmanager
}
else
{
List<LLUUID> requestids = new List<LLUUID>();
List<UUID> requestids = new List<UUID>();
lock (Members)
{
@@ -241,7 +241,7 @@ namespace groupmanager
}
}
private void GroupTitlesHandler(Dictionary<LLUUID, GroupTitle> titles)
private void GroupTitlesHandler(Dictionary<UUID, GroupTitle> titles)
{
Titles = titles;
@@ -258,7 +258,7 @@ namespace groupmanager
{
lock (Titles)
{
foreach (KeyValuePair<LLUUID, GroupTitle> kvp in Titles)
foreach (KeyValuePair<UUID, GroupTitle> kvp in Titles)
{
Console.Write("Title: " + kvp.Value.Title + " = " + kvp.Key.ToString());
if (kvp.Value.Selected)
@@ -273,7 +273,7 @@ namespace groupmanager
public class GroupMemberData
{
public LLUUID ID;
public UUID ID;
public string Name;
public string Title;
public string LastOnline;

View File

@@ -13,7 +13,7 @@ namespace groupmanager
public partial class frmGroupManager : Form
{
GridClient Client;
Dictionary<LLUUID, Group> Groups;
Dictionary<UUID, Group> Groups;
public frmGroupManager()
{
@@ -128,7 +128,7 @@ namespace groupmanager
}
}
private void Groups_OnCurrentGroups(Dictionary<LLUUID, Group> groups)
private void Groups_OnCurrentGroups(Dictionary<UUID, Group> groups)
{
Groups = groups;