Skip to content

Commit 43fe94e

Browse files
committed
Added some "virtual"
1 parent 1912211 commit 43fe94e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/TestStack.White/Application.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public class Application : IDisposable
2727
/// <summary>
2828
/// Flag to indicate to keep the application open when disposing the object
2929
/// </summary>
30-
public bool KeepOpenOnDispose { get; set; }
30+
public virtual bool KeepOpenOnDispose { get; set; }
3131

3232
protected Application()
3333
{

src/TestStack.White/UIItems/WindowItems/Window.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public abstract class Window : UIItemContainer, IDisposable
4646
/// <summary>
4747
/// Flag to indicate to keep the window open when disposing the object
4848
/// </summary>
49-
public bool KeepOpenOnDispose { get; set; }
49+
public virtual bool KeepOpenOnDispose { get; set; }
5050

5151
static Window()
5252
{

0 commit comments

Comments
 (0)