[Monodevelop-patches-list] r845 - trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/InsightWindow
commit-watcher at mono-cvs.ximian.com
commit-watcher at mono-cvs.ximian.com
Mon Feb 9 15:29:09 EST 2004
Author: tberman
Date: 2004-02-09 15:29:09 -0500 (Mon, 09 Feb 2004)
New Revision: 845
Modified:
trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/InsightWindow/InsightWindow.cs
Log:
proper counting
Modified: trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/InsightWindow/InsightWindow.cs
===================================================================
--- trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/InsightWindow/InsightWindow.cs 2004-02-09 19:01:19 UTC (rev 844)
+++ trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/InsightWindow/InsightWindow.cs 2004-02-09 20:29:09 UTC (rev 845)
@@ -58,7 +58,7 @@
set {
((InsightDataProviderStackElement)insightDataProviderStack.Peek()).currentData = value;
desc.Text = DataProvider.GetInsightData (CurrentData);
- current.Text = CurrentData.ToString ();
+ current.Text = (CurrentData + 1).ToString ();
max.Text = DataProvider.InsightDataCount.ToString ();
ReshowWithInitialSize ();
}
More information about the Monodevelop-patches-list
mailing list