From 2873b82b788244852fd1dad3a747f3ba33a73be5 Mon Sep 17 00:00:00 2001 From: mingchen Date: Mon, 16 Jul 2007 19:40:25 +0000 Subject: *Renamed everything Parcels and ParcelData to Land and LandData *Added missing files (I hope) --- OpenSim/Framework/General/Interfaces/IClientAPI.cs | 2 +- OpenSim/Framework/General/Interfaces/ILocalStorage.cs | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) (limited to 'OpenSim/Framework/General/Interfaces') diff --git a/OpenSim/Framework/General/Interfaces/IClientAPI.cs b/OpenSim/Framework/General/Interfaces/IClientAPI.cs index 0606e43..d58496c 100644 --- a/OpenSim/Framework/General/Interfaces/IClientAPI.cs +++ b/OpenSim/Framework/General/Interfaces/IClientAPI.cs @@ -71,7 +71,7 @@ namespace OpenSim.Framework.Interfaces public delegate void ParcelDivideRequest(int west, int south, int east, int north, IClientAPI remote_client); public delegate void ParcelJoinRequest(int west, int south, int east, int north, IClientAPI remote_client); public delegate void ParcelPropertiesUpdateRequest(ParcelPropertiesUpdatePacket packet, IClientAPI remote_client); - public delegate void ParcelSelectObjects(int parcel_local_id, int request_type, IClientAPI remote_client); + public delegate void ParcelSelectObjects(int land_local_id, int request_type, IClientAPI remote_client); public delegate void ParcelObjectOwnerRequest(int local_id, IClientAPI remote_client); public delegate void EstateOwnerMessageRequest(EstateOwnerMessagePacket packet, IClientAPI remote_client); diff --git a/OpenSim/Framework/General/Interfaces/ILocalStorage.cs b/OpenSim/Framework/General/Interfaces/ILocalStorage.cs index c7c0b5f..9d5bb62 100644 --- a/OpenSim/Framework/General/Interfaces/ILocalStorage.cs +++ b/OpenSim/Framework/General/Interfaces/ILocalStorage.cs @@ -48,11 +48,11 @@ namespace OpenSim.Framework.Interfaces [System.Obsolete("Use DataStorage instead")] void SaveMap(float[] heightmap); - void SaveParcels(ParcelData[] parcels); - void SaveParcel(ParcelData parcel); - void RemoveParcel(ParcelData parcel); - void RemoveAllParcels(); - void LoadParcels(ILocalStorageParcelReceiver recv); + void SaveLandObjects(LandData[] lands); + void SaveLandObject(LandData land); + void RemoveLandObject(LandData land); + void RemoveAllLandObjects(); + void LoadLandObjects(ILocalStorageLandObjectReceiver recv); void ShutDown(); } @@ -62,10 +62,10 @@ namespace OpenSim.Framework.Interfaces void PrimFromStorage(PrimData prim); } - public interface ILocalStorageParcelReceiver + public interface ILocalStorageLandObjectReceiver { - void ParcelFromStorage(ParcelData data); - void NoParcelDataFromStorage(); + void LandFromStorage(LandData data); + void NoLandDataFromStorage(); } } -- cgit v1.1