Removed ListViewColumnSorter

git-svn-id: http://svn.code.sf.net/p/greenshot/code/trunk@1818 7dccd23d-a4a3-4e1f-8c07-b4c1b4018ab4
This commit is contained in:
RKrom 2012-04-24 18:36:35 +00:00
commit f567d4dce4
3 changed files with 2 additions and 118 deletions

View file

@ -33,7 +33,7 @@ namespace GreenshotImgurPlugin {
/// </summary>
public partial class ImgurHistory : Form {
private static readonly log4net.ILog LOG = log4net.LogManager.GetLogger(typeof(ImgurHistory));
private ListViewColumnSorter columnSorter;
private GreenshotColumnSorter columnSorter;
private static ImgurConfiguration config = IniConfig.GetIniSection<ImgurConfiguration>();
private static ImgurHistory instance;
@ -55,7 +55,7 @@ namespace GreenshotImgurPlugin {
this.Icon = GreenshotPlugin.Core.GreenshotResources.getGreenshotIcon();
// Init sorting
columnSorter = new ListViewColumnSorter();
columnSorter = new GreenshotColumnSorter();
this.listview_imgur_uploads.ListViewItemSorter = columnSorter;
columnSorter.SortColumn = 3;
columnSorter.Order = SortOrder.Descending;