gnome-subtitles r1106 - trunk/src/GnomeSubtitles/Dialog



Author: pcastro
Date: Wed Dec 31 01:42:33 2008
New Revision: 1106
URL: http://svn.gnome.org/viewvc/gnome-subtitles?rev=1106&view=rev

Log:
Code cleanup.


Modified:
   trunk/src/GnomeSubtitles/Dialog/SyncPoints.cs

Modified: trunk/src/GnomeSubtitles/Dialog/SyncPoints.cs
==============================================================================
--- trunk/src/GnomeSubtitles/Dialog/SyncPoints.cs	(original)
+++ trunk/src/GnomeSubtitles/Dialog/SyncPoints.cs	Wed Dec 31 01:42:33 2008
@@ -88,7 +88,6 @@
 	private void Insert (int index, SyncPoint syncPoint) {
 		collection.Insert(index, syncPoint);
 		model.SetValue(model.Insert(index), 0, syncPoint);
-		System.Console.WriteLine("Inserted at " + index); //TODO remove
 	}
 	
 	private void Replace (int index, SyncPoint syncPoint) {
@@ -97,7 +96,6 @@
 		TreeIter iter;
 		model.GetIterFromString(out iter, index.ToString());
 		model.SetValue(iter, 0, syncPoint);
-		System.Console.WriteLine("Replaced at " + index); //TODO remove
 	}
 	
 	private void Add (SyncPoint syncPoint) {



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]