Index: trunk/extensions/CodeReview/backend/DiffHighlighter.php |
— | — | @@ -5,18 +5,18 @@ |
6 | 6 | */ |
7 | 7 | class CodeDiffHighlighter { |
8 | 8 | /* chunk line count for the original file */ |
9 | | - private $left = 0; |
| 9 | + protected $left = 0; |
10 | 10 | /* chunk line count for the changed file */ |
11 | | - private $right = 0; |
| 11 | + protected $right = 0; |
12 | 12 | /* number of chunks */ |
13 | | - private $chunk = 0; |
| 13 | + protected $chunk = 0; |
14 | 14 | /* line number inside patch */ |
15 | | - private $lineNumber = 0; |
| 15 | + protected $lineNumber = 0; |
16 | 16 | |
17 | 17 | /* CodeRepository: The repository for this revision */ |
18 | | - private $repo = null; |
| 18 | + protected $repo = null; |
19 | 19 | /* CodeRevision: revision the diff comes from */ |
20 | | - private $rev = null; |
| 20 | + protected $rev = null; |
21 | 21 | |
22 | 22 | /** |
23 | 23 | * Comments inside the diff. |