Skip to content

Commit 295b239

Browse files
Fix warning CS0649: Field 'UIState.SelectDataSource.SelectDataSourceWindow' is never assigned to, and will always have its default value
\Source\ExcelDna.IntelliSense\UIMonitor\UIState.cs(189,27,189,49)
1 parent 4ef37e1 commit 295b239

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/ExcelDna.IntelliSense/UIMonitor/UIState.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ internal FormulaEdit AsFormulaEdit()
186186
// Becomes a more general Window or Dialog to watch (for resize extension)
187187
public class SelectDataSource : UIState
188188
{
189-
public IntPtr SelectDataSourceWindow;
189+
public IntPtr SelectDataSourceWindow = IntPtr.Zero;
190190
}
191191

192192
public override string ToString()

0 commit comments

Comments
 (0)