diff options
author | mingchen | 2007-07-16 19:40:25 +0000 |
---|---|---|
committer | mingchen | 2007-07-16 19:40:25 +0000 |
commit | 2873b82b788244852fd1dad3a747f3ba33a73be5 (patch) | |
tree | 1a447a3e880743860a7fb4e4f726fedf816bf9d6 /OpenSim/Region/Storage/LocalStorageSQLite | |
parent | *Renamed ParcelManager to LandManager (diff) | |
download | opensim-SC-2873b82b788244852fd1dad3a747f3ba33a73be5.zip opensim-SC-2873b82b788244852fd1dad3a747f3ba33a73be5.tar.gz opensim-SC-2873b82b788244852fd1dad3a747f3ba33a73be5.tar.bz2 opensim-SC-2873b82b788244852fd1dad3a747f3ba33a73be5.tar.xz |
*Renamed everything Parcels and ParcelData to Land and LandData
*Added missing files (I hope)
Diffstat (limited to 'OpenSim/Region/Storage/LocalStorageSQLite')
-rw-r--r-- | OpenSim/Region/Storage/LocalStorageSQLite/SQLiteLocalStorage.cs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/OpenSim/Region/Storage/LocalStorageSQLite/SQLiteLocalStorage.cs b/OpenSim/Region/Storage/LocalStorageSQLite/SQLiteLocalStorage.cs index 599ff6c..88c5bde 100644 --- a/OpenSim/Region/Storage/LocalStorageSQLite/SQLiteLocalStorage.cs +++ b/OpenSim/Region/Storage/LocalStorageSQLite/SQLiteLocalStorage.cs | |||
@@ -167,26 +167,26 @@ namespace OpenSim.Region.Storage.LocalStorageSQLite | |||
167 | 167 | ||
168 | } | 168 | } |
169 | 169 | ||
170 | public void SaveParcels(ParcelData[] parcel_manager) | 170 | public void SaveLandObjects(LandData[] land_manager) |
171 | { | 171 | { |
172 | 172 | ||
173 | } | 173 | } |
174 | 174 | ||
175 | public void SaveParcel(ParcelData parcel) | 175 | public void SaveLandObject(LandData land) |
176 | { | 176 | { |
177 | } | 177 | } |
178 | 178 | ||
179 | public void RemoveParcel(ParcelData parcel) | 179 | public void RemoveLandObject(LandData land) |
180 | { | 180 | { |
181 | } | 181 | } |
182 | 182 | ||
183 | public void RemoveAllParcels() | 183 | public void RemoveAllLandObjects() |
184 | { | 184 | { |
185 | } | 185 | } |
186 | 186 | ||
187 | public void LoadParcels(ILocalStorageParcelReceiver recv) | 187 | public void LoadLandObjects(ILocalStorageLandObjectReceiver recv) |
188 | { | 188 | { |
189 | recv.NoParcelDataFromStorage(); | 189 | recv.NoLandDataFromStorage(); |
190 | } | 190 | } |
191 | 191 | ||
192 | public void ShutDown() | 192 | public void ShutDown() |