diff options
author | lbsa71 | 2007-10-05 11:27:46 +0000 |
---|---|---|
committer | lbsa71 | 2007-10-05 11:27:46 +0000 |
commit | ed6168b96b687a2f44177af8200d13b427089099 (patch) | |
tree | 2d87efb9c800f06233cbef0612617eba2c931f68 /OpenSim/Framework/Data.DB4o/DB4oUserData.cs | |
parent | == The "right name and place" commit == (diff) | |
download | opensim-SC_OLD-ed6168b96b687a2f44177af8200d13b427089099.zip opensim-SC_OLD-ed6168b96b687a2f44177af8200d13b427089099.tar.gz opensim-SC_OLD-ed6168b96b687a2f44177af8200d13b427089099.tar.bz2 opensim-SC_OLD-ed6168b96b687a2f44177af8200d13b427089099.tar.xz |
* UserProfileData meets code conventions
Diffstat (limited to 'OpenSim/Framework/Data.DB4o/DB4oUserData.cs')
-rw-r--r-- | OpenSim/Framework/Data.DB4o/DB4oUserData.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Framework/Data.DB4o/DB4oUserData.cs b/OpenSim/Framework/Data.DB4o/DB4oUserData.cs index 38f1b55..e6a856d 100644 --- a/OpenSim/Framework/Data.DB4o/DB4oUserData.cs +++ b/OpenSim/Framework/Data.DB4o/DB4oUserData.cs | |||
@@ -83,7 +83,7 @@ namespace OpenSim.Framework.Data.DB4o | |||
83 | { | 83 | { |
84 | foreach (UserProfileData profile in manager.userProfiles.Values) | 84 | foreach (UserProfileData profile in manager.userProfiles.Values) |
85 | { | 85 | { |
86 | if (profile.username == fname && profile.surname == lname) | 86 | if (profile.Firstname == fname && profile.Lastname == lname) |
87 | return profile; | 87 | return profile; |
88 | } | 88 | } |
89 | return null; | 89 | return null; |
@@ -98,7 +98,7 @@ namespace OpenSim.Framework.Data.DB4o | |||
98 | { | 98 | { |
99 | try | 99 | try |
100 | { | 100 | { |
101 | return GetUserByUUID(uuid).currentAgent; | 101 | return GetUserByUUID(uuid).CurrentAgent; |
102 | } | 102 | } |
103 | catch (Exception) | 103 | catch (Exception) |
104 | { | 104 | { |
@@ -126,7 +126,7 @@ namespace OpenSim.Framework.Data.DB4o | |||
126 | { | 126 | { |
127 | try | 127 | try |
128 | { | 128 | { |
129 | return GetUserByName(fname,lname).currentAgent; | 129 | return GetUserByName(fname,lname).CurrentAgent; |
130 | } | 130 | } |
131 | catch (Exception) | 131 | catch (Exception) |
132 | { | 132 | { |