diff options
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.UI/BackupRestore/DefaultBackupManager.cs')
| -rw-r--r-- | Software/Visual_Studio/PPC/Tango.PPC.UI/BackupRestore/DefaultBackupManager.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.UI/BackupRestore/DefaultBackupManager.cs b/Software/Visual_Studio/PPC/Tango.PPC.UI/BackupRestore/DefaultBackupManager.cs index 1eeb848ed..e73dde3ce 100644 --- a/Software/Visual_Studio/PPC/Tango.PPC.UI/BackupRestore/DefaultBackupManager.cs +++ b/Software/Visual_Studio/PPC/Tango.PPC.UI/BackupRestore/DefaultBackupManager.cs @@ -10,7 +10,7 @@ namespace Tango.PPC.UI.BackupRestore { public class DefaultBackupManager : IBackupManager { - public event EventHandler<BackupRestoreEventArgs> Progress; + public event EventHandler<BackupRestoreProgressEventArgs> Progress; public DefaultBackupManager(IPPCApplicationManager applicationManager) { @@ -29,7 +29,7 @@ namespace Tango.PPC.UI.BackupRestore protected virtual void OnProgress(BackupRestoreStage stage, double progress = 0, double maxProgress = 100, bool isIntermediate = true) { - Progress?.Invoke(this, new BackupRestoreEventArgs() + Progress?.Invoke(this, new BackupRestoreProgressEventArgs() { Stage = stage, Progress = progress, |
