From 1e220911938ef3d16cee0112b81333a60b3e5d52 Mon Sep 17 00:00:00 2001 From: AliciaRaven Date: Sat, 13 Sep 2014 04:25:31 +0100 Subject: Modifications to previous IAR commits to bring them more inline with existing OpenSim code conventions. Also include new IAR save switch in console help print out. --- .../Region/Framework/Interfaces/IInventoryArchiverModule.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'OpenSim/Region/Framework/Interfaces') diff --git a/OpenSim/Region/Framework/Interfaces/IInventoryArchiverModule.cs b/OpenSim/Region/Framework/Interfaces/IInventoryArchiverModule.cs index 0795589..37e20c3 100644 --- a/OpenSim/Region/Framework/Interfaces/IInventoryArchiverModule.cs +++ b/OpenSim/Region/Framework/Interfaces/IInventoryArchiverModule.cs @@ -42,10 +42,10 @@ namespace OpenSim.Region.Framework.Interfaces /// The inventory path saved /// The stream to which the archive was saved /// Contains the exception generated if the save did not succeed - /// Number of inventory items saved to archive - /// Number of inventory items skipped due to perm filter option + /// Number of inventory items saved to archive + /// Number of inventory items skipped due to perm filter option public delegate void InventoryArchiveSaved( - UUID id, bool succeeded, UserAccount userInfo, string invPath, Stream saveStream, Exception reportedException, int SaveCount, int FilterCount); + UUID id, bool succeeded, UserAccount userInfo, string invPath, Stream saveStream, Exception reportedException, int saveCount, int filterCount); /// /// Used for the OnInventoryArchiveLoaded event. @@ -56,9 +56,9 @@ namespace OpenSim.Region.Framework.Interfaces /// The inventory path loaded /// The stream from which the archive was loaded /// Contains the exception generated if the load did not succeed - /// Number of inventory items loaded from archive + /// Number of inventory items loaded from archive public delegate void InventoryArchiveLoaded( - UUID id, bool succeeded, UserAccount userInfo, string invPath, Stream loadStream, Exception reportedException, int LoadCount); + UUID id, bool succeeded, UserAccount userInfo, string invPath, Stream loadStream, Exception reportedException, int loadCount); public interface IInventoryArchiverModule -- cgit v1.1