From: jpbruyere Date: Tue, 1 Mar 2016 04:22:48 +0000 (+0100) Subject: debug after rebase X-Git-Tag: v0.4~93^2~10 X-Git-Url: https://git.osiis.dedyn.io/?a=commitdiff_plain;h=10c06ae11464dff1a426cbab5841e8e59501e8a0;p=jp%2Fcrow.git debug after rebase --- diff --git a/src/GraphicObjects/GraphicObject.cs b/src/GraphicObjects/GraphicObject.cs index 56b50684..b9fc6c3e 100644 --- a/src/GraphicObjects/GraphicObject.cs +++ b/src/GraphicObjects/GraphicObject.cs @@ -8,6 +8,7 @@ using System.Runtime.CompilerServices; using Cairo; using System.Linq; using System.Diagnostics; +using System.IO; namespace Crow { diff --git a/src/GraphicObjects/ListBox.cs b/src/GraphicObjects/ListBox.cs index 31555306..2257e62d 100644 --- a/src/GraphicObjects/ListBox.cs +++ b/src/GraphicObjects/ListBox.cs @@ -224,7 +224,7 @@ namespace Crow (int)Math.Ceiling ((double)page1.Slot.Height / (double)itemPerPage * (double)(data.Count+1)); } } - void itemClick(object sender, OpenTK.Input.MouseButtonEventArgs e){ + void itemClick(object sender, MouseButtonEventArgs e){ SelectedIndex = data.IndexOf((sender as GraphicObject).DataSource); }