remove some now unused methods
This commit is contained in:
parent
6c22e1c4c6
commit
9a4de3b70d
|
@ -1,7 +1,5 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Windows.Forms;
|
||||
|
||||
using BizHawk.Emulation.Common;
|
||||
|
@ -105,29 +103,6 @@ namespace BizHawk.Client.EmuHawk
|
|||
e.Effect = e.Data.GetDataPresent(DataFormats.FileDrop) ? DragDropEffects.Copy : DragDropEffects.None;
|
||||
}
|
||||
|
||||
protected void LoadColumnInfo(VirtualListView listView, ToolDialogSettings.ColumnList columns)
|
||||
{
|
||||
listView.Columns.Clear();
|
||||
|
||||
var cl = columns
|
||||
.Where(c => c.Visible)
|
||||
.OrderBy(c => c.Index);
|
||||
|
||||
foreach (var column in cl)
|
||||
{
|
||||
listView.AddColumn(column);
|
||||
}
|
||||
}
|
||||
|
||||
protected void SaveColumnInfo(VirtualListView listview, ToolDialogSettings.ColumnList columns)
|
||||
{
|
||||
foreach (ColumnHeader column in listview.Columns)
|
||||
{
|
||||
columns[column.Name].Index = column.DisplayIndex;
|
||||
columns[column.Name].Width = column.Width;
|
||||
}
|
||||
}
|
||||
|
||||
protected void RefreshFloatingWindowControl(bool floatingWindow)
|
||||
{
|
||||
Owner = floatingWindow ? null : GlobalWin.MainForm;
|
||||
|
|
Loading…
Reference in New Issue