~ubuntu-branches/ubuntu/lucid/beagle/lucid

« back to all changes in this revision

Viewing changes to search/Tiles/IMLog.cs

  • Committer: Bazaar Package Importer
  • Author(s): Brandon Hale
  • Date: 2007-05-19 06:56:20 UTC
  • mfrom: (1.1.16 upstream)
  • Revision ID: james.westby@ubuntu.com-20070519065620-wamzne76wfkvsyel
Tags: 0.2.17-1ubuntu1
* Synchronize with Debian
* Remaining Ubuntu changes:
  - Use Firefox, not Iceweasel
  - Rename iceweasel-beagle to mozilla-beagle
  - Don't build with galago, not in main
  - Build-depend on libglade2.0-cil, libgconf2.0-cil
  - python-beagle.install: install from usr/lib/python2.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
77
77
                private Gdk.Pixbuf LoadBuddyIcon ()
78
78
                {
79
79
                        Gdk.Pixbuf icon = null;
80
 
 
 
80
                        try {
81
81
                        if (Hit ["fixme:speakingto_icon"] != null && System.IO.File.Exists (Hit ["fixme:speakingto_icon"]))
82
82
                                icon = new Gdk.Pixbuf (Hit ["fixme:speakingto_icon"]);
83
 
 
 
83
                        } catch (Exception e){
 
84
                                Console.WriteLine(e);
 
85
                        }
84
86
                        return icon;                            
85
87
                }
86
88