[blam] Channel: Use the basic ctor for support



commit d2c67dbc26a6963c402bc4cbcefb0095c7d92183
Author: Carlos Martín Nieto <carlos cmartin tk>
Date:   Sun Oct 10 16:13:06 2010 +0100

    Channel: Use the basic ctor for support

 src/Channel.cs |    5 +----
 1 files changed, 1 insertions(+), 4 deletions(-)
---
diff --git a/src/Channel.cs b/src/Channel.cs
index 8e0df22..f20223d 100644
--- a/src/Channel.cs
+++ b/src/Channel.cs
@@ -123,11 +123,8 @@ namespace Imendio.Blam {
             store = ItemStore.GetInstance();
         }
 
-        public Channel (string name, string url)
+        public Channel (string name, string url) : this()
         {
-            item_list = new ArrayList();
-            mIter = new Gtk.TreeIter();
-            store = ItemStore.GetInstance();
             Name = name;
             Url = url;
         }



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