Horizon – Diff between revs 1 and 21

Subversion Repositories:
Rev:
Only display areas with differencesIgnore whitespace
Rev 1 Rev 21
1 using System.Windows.Forms; 1 using System.Windows.Forms;
2   2  
3 namespace Horizon.Snapshots 3 namespace Horizon.Snapshots
4 { 4 {
5 public class DataGridViewRowProgress 5 public class DataGridViewRowProgress
6 { 6 {
7 #region Constructors, Destructors and Finalizers 7 #region Constructors, Destructors and Finalizers
8   8  
9 public DataGridViewRowProgress(DataGridViewRow row, int index, bool success) 9 public DataGridViewRowProgress(DataGridViewRow row, int index, bool success)
10 { 10 {
11 Row = row; 11 Row = row;
12 Index = index; 12 Index = index;
13 Success = success; 13 Success = success;
14 } 14 }
-   15  
-   16 public DataGridViewRowProgress(bool success)
-   17 {
-   18 Success = success;
-   19 }
15   20  
16 #endregion 21 #endregion
17   22  
18 #region Public Enums, Properties and Fields 23 #region Public Enums, Properties and Fields
19   24  
20 public DataGridViewRow Row { get; } 25 public DataGridViewRow Row { get; }
21   26  
22 public int Index { get; } 27 public int Index { get; }
23   28  
24 public bool Success { get; } 29 public bool Success { get; }
25   30  
26 #endregion 31 #endregion
27 } 32 }
28 } 33 }
29   34  
30
Generated by GNU Enscript 1.6.5.90.
35
Generated by GNU Enscript 1.6.5.90.
31   36  
32   37  
33   38