Skip to content

Commit

Permalink
renaming and new wrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
robinrodricks committed Mar 6, 2019
1 parent afcb0ce commit 2d4738a
Show file tree
Hide file tree
Showing 39 changed files with 10,432 additions and 11,035 deletions.
10,233 changes: 10,233 additions & 0 deletions FluentListView/AdvancedListView.cs

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions FluentListView/CellEditing/CellEditKeyEngine.cs
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ public virtual void SetKeyBehaviour(Keys key, CellEditCharacterBehaviour normalB
/// <param name="olv"></param>
/// <param name="keyData"></param>
/// <returns>True if the key was completely handled.</returns>
public virtual bool HandleKey(FluentListView olv, Keys keyData) {
public virtual bool HandleKey(AdvancedListView olv, Keys keyData) {
if (olv == null) throw new ArgumentNullException("olv");

CellEditCharacterBehaviour behaviour;
Expand Down Expand Up @@ -238,11 +238,11 @@ public virtual bool HandleKey(FluentListView olv, Keys keyData) {
/// Gets or sets the FluentListView on which the current key is being handled.
/// This cannot be null.
/// </summary>
protected FluentListView ListView {
protected AdvancedListView ListView {
get { return listView; }
set { listView = value; }
}
private FluentListView listView;
private AdvancedListView listView;

/// <summary>
/// Gets the row of the cell that is currently being edited
Expand Down
2 changes: 1 addition & 1 deletion FluentListView/CellEditing/CellEditors.cs
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ public class AutoCompleteCellEditor : ComboBox
/// </summary>
/// <param name="lv"></param>
/// <param name="column"></param>
public AutoCompleteCellEditor(FluentListView lv, OLVColumn column) {
public AutoCompleteCellEditor(AdvancedListView lv, OLVColumn column) {
this.DropDownStyle = ComboBoxStyle.DropDown;

Dictionary<String, bool> alreadySeen = new Dictionary<string, bool>();
Expand Down
236 changes: 0 additions & 236 deletions FluentListView/DataListView.cs

This file was deleted.

Loading

0 comments on commit 2d4738a

Please sign in to comment.