aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/WindowsInstaller/Rows/ControlRow.cs
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2020-04-18 13:53:54 +1000
committerSean Hall <r.sean.hall@gmail.com>2020-04-18 21:25:30 +1000
commit1c933963d1354495d4a31a08baf7f1240b5fbfce (patch)
treef2190fc0336f57d3c6b408e1a5d57b0b9c343092 /src/WixToolset.Data/WindowsInstaller/Rows/ControlRow.cs
parent2b3c14c790e8a95edabecf2d7bb50baa58d8e95b (diff)
downloadwix-1c933963d1354495d4a31a08baf7f1240b5fbfce.tar.gz
wix-1c933963d1354495d4a31a08baf7f1240b5fbfce.tar.bz2
wix-1c933963d1354495d4a31a08baf7f1240b5fbfce.zip
Add ability for an extension to have a custom strongly typed row during binding.
Remove some unused functionality in Table and Row. Use strongRowType in core tables.
Diffstat (limited to 'src/WixToolset.Data/WindowsInstaller/Rows/ControlRow.cs')
-rw-r--r--src/WixToolset.Data/WindowsInstaller/Rows/ControlRow.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/WixToolset.Data/WindowsInstaller/Rows/ControlRow.cs b/src/WixToolset.Data/WindowsInstaller/Rows/ControlRow.cs
index 95289dea..e0ae2de0 100644
--- a/src/WixToolset.Data/WindowsInstaller/Rows/ControlRow.cs
+++ b/src/WixToolset.Data/WindowsInstaller/Rows/ControlRow.cs
@@ -19,6 +19,11 @@ namespace WixToolset.Data.WindowsInstaller.Rows
19 { 19 {
20 } 20 }
21 21
22 public ControlRow(SourceLineNumber sourceLineNumbers, TableDefinition tableDefinition) :
23 base(sourceLineNumbers, tableDefinition)
24 {
25 }
26
22 /// <summary> 27 /// <summary>
23 /// Gets or sets the dialog of the Control row. 28 /// Gets or sets the dialog of the Control row.
24 /// </summary> 29 /// </summary>