/b-gtk/fix-viz

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/b-gtk/fix-viz

« back to all changes in this revision

Viewing changes to preferences/__init__.py

  • Committer: Jelmer Vernooij
  • Date: 2012-07-10 08:38:04 UTC
  • mto: This revision was merged to the branch mainline in revision 794.
  • Revision ID: jelmer@samba.org-20120710083804-ohksjny2tgdd10y3
Remove tests and preferences page.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
from bzrlib.config import GlobalConfig
20
20
from bzrlib.plugins.gtk.preferences.identity import IdentityPage
21
21
from bzrlib.plugins.gtk.preferences.plugins import PluginsPage
22
 
from bzrlib.plugins.gtk.preferences.notifications import NotificationsPage
23
22
 
24
23
class PreferencesWindow(Gtk.Dialog):
25
24
    """Displays global preferences windows."""
55
54
 
56
55
    def _create_pages(self):
57
56
        return [("Identity", IdentityPage(self.config)),
58
 
                ("Plugins", PluginsPage()),
59
 
                ("Notifications", NotificationsPage(self.config))]
 
57
                ("Plugins", PluginsPage())]
60
58
 
61
59
    def display(self):
62
60
        self.window.show_all()