Changeset 2450
- Timestamp:
- 3/12/2012 7:14:37 AM (15 months ago)
- Location:
- branches/eraser6/pluginsRewrite/Eraser
- Files:
-
- 2 edited
-
Program.cs (modified) (2 diffs)
-
UpdateForm.cs (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/eraser6/pluginsRewrite/Eraser/Program.cs
r2449 r2450 42 42 using Eraser.Plugins; 43 43 using Eraser.Plugins.ExtensionPoints; 44 using Eraser.Plugins.Registrars; 44 45 45 46 namespace Eraser … … 562 563 string upperParam = param.ToUpperInvariant(); 563 564 IErasureMethod result = null; 564 foreach ( ErasureMethod method in Host.Instance.ErasureMethods)565 foreach (IErasureMethod method in Host.Instance.ErasureMethods) 565 566 { 566 567 if (method.Name.ToUpperInvariant() == upperParam) -
branches/eraser6/pluginsRewrite/Eraser/UpdateForm.cs
r2445 r2450 539 539 using (MemoryStream memoryStream = new MemoryStream()) 540 540 { 541 Util.ProgressManager progress = new Util.ProgressManager();541 ProgressManager progress = new ProgressManager(); 542 542 if (response.ContentLength == -1) 543 543 progress.MarkIndeterminate(); … … 555 555 556 556 if (handler != null) 557 handler(null, new Eraser.Util.ProgressChangedEventArgs(progress,557 handler(null, new ProgressChangedEventArgs(progress, 558 558 S._("{0} of {1} downloaded", FileSize.ToString(progress.Completed), 559 559 FileSize.ToString(progress.Total))));
Note: See TracChangeset
for help on using the changeset viewer.
