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 Apr 11, 2024
1 parent 1d322f2 commit df2d800
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Bonsai.Gui/ListControlDataSourceBuilderBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace Bonsai.Gui
/// Provides an abstract base class for interfacing with combo box and list box controls
/// bound to each data source in an observable sequence.
/// </summary>
public class ListControlDataSourceBuilderBase : DataSourceControlBuilderBase
public abstract class ListControlDataSourceBuilderBase : DataSourceControlBuilderBase
{
internal readonly BehaviorSubject<string> _DisplayMember = new(string.Empty);
internal readonly BehaviorSubject<object> _DataSource = new(null);
Expand Down

0 comments on commit df2d800

Please sign in to comment.