~ubuntu-branches/ubuntu/saucy/blam/saucy

« back to all changes in this revision

Viewing changes to src/ChannelList.cs

  • Committer: Bazaar Package Importer
  • Author(s): Adrien Cunin
  • Date: 2007-02-02 00:37:16 UTC
  • mfrom: (1.1.4 upstream) (2.1.1 etch)
  • Revision ID: james.westby@ubuntu.com-20070202003716-63fv2k0ztk04bjq9
Tags: 1.8.4-0ubuntu1
* Sync with Debian unstable
* New upstream release
* Added build-dependency on gnome-sharp2
* debian/patches/01_correct_default_theme.patch: dropped, included upstream
* Re-added the following Ubuntu changes:
   - Build-Depends on firefox-dev instead of libxul-dev
   - debian/patches/PlanetUbuntu.patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
183
183
                }
184
184
            }
185
185
 
186
 
            TreeIter startIter = iter.Copy();
 
186
            TreeIter startIter = iter;
187
187
 
188
188
            do {
189
189
                Channel channel = (Channel)model.GetValue(iter, 0);
333
333
 
334
334
            this.Model.Foreach(new TreeModelForeachFunc(ForeachFindChannel));
335
335
 
336
 
            return foundIter.Copy();
 
336
            return foundIter;
337
337
        }
338
338
 
339
339
        private void EmitEditChannelEvent(Channel channel)