~ubuntu-branches/ubuntu/wily/d-feet/wily

« back to all changes in this revision

Viewing changes to dfeet/DFeetApp.py

  • Committer: Bazaar Package Importer
  • Author(s): Laurent Bigonville
  • Date: 2009-07-11 18:32:37 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20090711183237-m11ogk5yls20n2k2
* New upstream release.
* debian/control:
  - Drop XS-Dm-Upload-Allowed: yes
  - Bump Standards-Version to 3.8.2 (no further changes)
  - Add python-setuptools as build-dep
  - Recommends python-wnck instead of python-gnome2-desktop
* debian/watch: Fix URL
* Bump debhelper compatibility to 7
* debian/rules: Drop dh_desktop call, not needed anymore
* Use correct pysupport policy
* Update copyright file

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
        signal_dict = {'add_session_bus': self.add_session_bus_cb,
21
21
                       'add_system_bus': self.add_system_bus_cb,
22
22
                       'add_bus_address': self.add_bus_address_cb,
23
 
                       'execute_method': self.execute_current_method_cb}
 
23
                       'execute_method': self.execute_current_method_cb,
 
24
                       'quit': self.quit_cb}
24
25
 
25
26
        self.ICON_SIZE_CLOSE_BUTTON = gtk.icon_size_register('ICON_SIZE_CLOSE_BUTTON', 14, 14)
26
27
 
127
128
 
128
129
        dialog.destroy()
129
130
 
 
131
    def quit_cb(self, action):
 
132
        self._quit_dfeet(self.main_window, None)
 
133
 
130
134
    def _quit_dfeet(self, main_window, event):
131
135
        settings = Settings.get_instance()
132
136
        size = main_window.get_size()