minor refactoring. Change getName and GetVersion methods (yes the had different casings)

to Name and Version properties for the User stores.
This commit is contained in:
Sean Dague
2008-05-02 12:35:24 +00:00
parent b1aacfe0d4
commit 4a8f432441
7 changed files with 19 additions and 30 deletions

View File

@@ -49,8 +49,8 @@ namespace OpenSim.Data
public abstract List<FriendListItem> GetUserFriendList(LLUUID friendlistowner);
public abstract bool MoneyTransferRequest(LLUUID from, LLUUID to, uint amount);
public abstract bool InventoryTransferRequest(LLUUID from, LLUUID to, LLUUID inventory);
public abstract string GetVersion();
public abstract string getName();
public abstract string Version {get;}
public abstract string Name {get;}
public abstract void Initialise();
public abstract List<AvatarPickerAvatar> GeneratePickerResults(LLUUID queryID, string query);
public abstract UserAppearance GetUserAppearance(LLUUID user);