[longomatch/redesign] Remove prints
- From: Andoni Morales Alastruey <amorales src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [longomatch/redesign] Remove prints
- Date: Wed, 22 Dec 2010 00:02:12 +0000 (UTC)
commit 4d5e352de7810f4967f71aa1c77933a3a83a2a5b
Author: Andoni Morales Alastruey <ylatuya gmail com>
Date: Wed Dec 22 01:01:46 2010 +0100
Remove prints
LongoMatch/Gui/Component/ProjectDetailsWidget.cs | 3 ---
LongoMatch/Gui/Component/TimeLineWidget.cs | 1 -
LongoMatch/Store/Project.cs | 1 -
LongoMatch/Utils/ProjectUtils.cs | 2 --
4 files changed, 0 insertions(+), 7 deletions(-)
---
diff --git a/LongoMatch/Gui/Component/ProjectDetailsWidget.cs b/LongoMatch/Gui/Component/ProjectDetailsWidget.cs
index 217e334..ad86aa1 100644
--- a/LongoMatch/Gui/Component/ProjectDetailsWidget.cs
+++ b/LongoMatch/Gui/Component/ProjectDetailsWidget.cs
@@ -416,7 +416,6 @@ namespace LongoMatch.Gui.Component
tagscombobox.Active = index;
var reader = new CategoriesReader(System.IO.Path.Combine(MainClass.TemplatesDir(),SectionsFile));
Categories = reader.GetCategories();
- Console.WriteLine (Categories.Count);
}
private void FillTeamsTemplate() {
@@ -500,7 +499,6 @@ namespace LongoMatch.Gui.Component
md.Icon=Stetic.IconLoader.LoadIcon(this, "longomatch", Gtk.IconSize.Dialog);
md.Show();
mFile = LongoMatch.Video.Utils.PreviewMediaFile.GetMediaFile(filename);
- Console.WriteLine (mFile.Length.ToString());
if (!mFile.HasVideo || mFile.VideoCodec == "")
throw new Exception(Catalog.GetString("This file doesn't contain a video stream."));
if (mFile.HasVideo && mFile.Length == 0)
@@ -560,7 +558,6 @@ namespace LongoMatch.Gui.Component
{
ProjectTemplateEditorDialog ted = new ProjectTemplateEditorDialog();
ted.TransientFor = (Window)Toplevel;
- Console.WriteLine (Categories.Count);
ted.Categories = Categories;
ted.Project = project;
ted.CanExport = Use == ProjectType.EditProject;
diff --git a/LongoMatch/Gui/Component/TimeLineWidget.cs b/LongoMatch/Gui/Component/TimeLineWidget.cs
index bb65af0..30c6388 100644
--- a/LongoMatch/Gui/Component/TimeLineWidget.cs
+++ b/LongoMatch/Gui/Component/TimeLineWidget.cs
@@ -137,7 +137,6 @@ namespace LongoMatch.Gui.Component {
categories = value.Categories;
tsList = new Dictionary<Category, TimeScale>();
frames = value.Description.File.GetFrames();
- Console.WriteLine (frames);
ushort fps = value.Description.File.Fps;
tr = new TimeReferenceWidget(frames,fps);
vbox1.PackStart(tr,false,false,0);
diff --git a/LongoMatch/Store/Project.cs b/LongoMatch/Store/Project.cs
index 2c910cf..cf52972 100644
--- a/LongoMatch/Store/Project.cs
+++ b/LongoMatch/Store/Project.cs
@@ -187,7 +187,6 @@ namespace LongoMatch.Store
}
public List<Play> PlaysInCategory (Category category){
- Console.WriteLine ("Plays are " + playsList.Count);
return (from play in playsList
where play.Category.UUID == category.UUID
select play).ToList();
diff --git a/LongoMatch/Utils/ProjectUtils.cs b/LongoMatch/Utils/ProjectUtils.cs
index cdf9588..76b8378 100644
--- a/LongoMatch/Utils/ProjectUtils.cs
+++ b/LongoMatch/Utils/ProjectUtils.cs
@@ -267,8 +267,6 @@ namespace LongoMatch.Utils
IFramesCapturer capturer;
BusyDialog dialog;
- Console.WriteLine("start thumbnails");
-
dialog = new BusyDialog();
dialog.TransientFor = window;
dialog.Message = Catalog.GetString("Creating video thumbnails. This can take a while.");
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]