~ubuntu-branches/debian/sid/exaile/sid

« back to all changes in this revision

Viewing changes to xlgui/guiutil.py

  • Committer: Package Import Robot
  • Author(s): Vincent Cheng
  • Date: 2013-10-26 16:55:00 UTC
  • mfrom: (0.2.3)
  • Revision ID: package-import@ubuntu.com-20131026165500-6x29udlb6vxt6q3s
Tags: 3.3.2-1
* New upstream release.
* Add debian/patches/20_use-logind-to-shutdown.patch: allow shutdown plugin
  to support both logind in addition to ConsoleKit. Thanks to Iain Lane.
* Remove references to Shoutcast in package descriptions. (Closes: #721682)
* (Re-)add lintian override for executable-not-elf-or-script.
* Fix lintian warning vcs-field-not-canonical.
* Remove deprecated DMUA flag in debian/control.
* Update Standards version from 3.9.3 to 3.9.4, no changes required.

Show diffs side-by-side

added added

removed removed

Lines of Context:
217
217
        self.entry = entry
218
218
        self.timeout = timeout
219
219
        self.change_id = None
220
 
        self._last_text = entry.get_text()
221
220
 
222
221
        if entry is None:
223
222
            self.entry = entry = gtk.Entry()
 
223
            
 
224
        self._last_text = entry.get_text()
224
225
 
225
226
        entry.connect('changed', self.on_entry_changed)
226
227
        entry.connect('icon-press', self.on_entry_icon_press)