Skip to content

Commit

Permalink
Ensure base class is abstract
Browse files Browse the repository at this point in the history
  • Loading branch information
glopesdev committed Mar 26, 2024
1 parent 2c78bbe commit 95d525b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Bonsai.Gui/CheckButtonBuilderBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ namespace Bonsai.Gui
/// <summary>
/// Provides an abstract base class with common check button control functionality.
/// </summary>
public class CheckButtonBuilderBase : ButtonBuilderBase<bool>
public abstract class CheckButtonBuilderBase : ButtonBuilderBase<bool>
{
internal readonly BehaviorSubject<bool> _Checked = new(false);

Expand Down

0 comments on commit 95d525b

Please sign in to comment.