diff options
author | Sean Dague | 2008-04-10 14:09:30 +0000 |
---|---|---|
committer | Sean Dague | 2008-04-10 14:09:30 +0000 |
commit | 25fea01b92a7682e10f57ce979217d31fee975ef (patch) | |
tree | 0e0dec2344cd06609bf47f1a7e2245a0a94f99c6 /OpenSim/Framework/Communications/CommunicationsManager.cs | |
parent | moved fields to properties for UserDataProfile, which was (diff) | |
download | opensim-SC_OLD-25fea01b92a7682e10f57ce979217d31fee975ef.zip opensim-SC_OLD-25fea01b92a7682e10f57ce979217d31fee975ef.tar.gz opensim-SC_OLD-25fea01b92a7682e10f57ce979217d31fee975ef.tar.bz2 opensim-SC_OLD-25fea01b92a7682e10f57ce979217d31fee975ef.tar.xz |
further renaming of properties for clarity
Diffstat (limited to 'OpenSim/Framework/Communications/CommunicationsManager.cs')
-rw-r--r-- | OpenSim/Framework/Communications/CommunicationsManager.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Framework/Communications/CommunicationsManager.cs b/OpenSim/Framework/Communications/CommunicationsManager.cs index 6b01d8f..192c8e3 100644 --- a/OpenSim/Framework/Communications/CommunicationsManager.cs +++ b/OpenSim/Framework/Communications/CommunicationsManager.cs | |||
@@ -164,9 +164,9 @@ namespace OpenSim.Framework.Communications | |||
164 | } | 164 | } |
165 | else | 165 | else |
166 | { | 166 | { |
167 | m_inventoryService.CreateNewUserInventory(userProf.Id); | 167 | m_inventoryService.CreateNewUserInventory(userProf.ID); |
168 | m_log.Info("[USERS]: Created new inventory set for " + firstName + " " + lastName); | 168 | m_log.Info("[USERS]: Created new inventory set for " + firstName + " " + lastName); |
169 | return userProf.Id; | 169 | return userProf.ID; |
170 | } | 170 | } |
171 | } | 171 | } |
172 | 172 | ||
@@ -249,7 +249,7 @@ namespace OpenSim.Framework.Communications | |||
249 | UserProfileData profileData = m_userService.GetUserProfile(uuid); | 249 | UserProfileData profileData = m_userService.GetUserProfile(uuid); |
250 | if (profileData != null) | 250 | if (profileData != null) |
251 | { | 251 | { |
252 | LLUUID profileId = profileData.Id; | 252 | LLUUID profileId = profileData.ID; |
253 | string firstname = profileData.FirstName; | 253 | string firstname = profileData.FirstName; |
254 | string lastname = profileData.SurName; | 254 | string lastname = profileData.SurName; |
255 | 255 | ||