~dobey/ubuntu/natty/banshee/fix-and-amz

« back to all changes in this revision

Viewing changes to src/Core/Banshee.Widgets/Banshee.Widgets/SearchEntry.cs

  • Committer: Bazaar Package Importer
  • Author(s): Chow Loong Jin
  • Date: 2011-03-29 08:16:04 UTC
  • mfrom: (1.14.4 upstream) (6.4.10 sid)
  • Revision ID: james.westby@ubuntu.com-20110329081604-pamtv8qplbecfcx0
Tags: 1.9.6-1ubuntu1
* Merge from Debian Unstable, remaining changes:
  + Enable SoundMenu and Disable NotificationArea by default
  + Disable boo and karma extensions
  + Enable and recommnd u1ms and soundmenu extensions
  + Move desktop file for Meego UI to /usr/share/une/applications
* [b14f32d] Bump libubuntuone1.0-cil-dev version in build-dep
* [e382b0f] Update soundmenu and u1ms install files for rename

Show diffs side-by-side

added added

removed removed

Lines of Context:
385
385
 
386
386
        public string Query {
387
387
            get { return entry.Text.Trim(); }
388
 
            set { entry.Text = value.Trim(); }
 
388
            set { entry.Text = String.IsNullOrEmpty (value) ? String.Empty : value.Trim (); }
389
389
        }
390
390
 
391
391
        public bool IsQueryAvailable {