~alecu/ubuntu-sso-client/timestamp-autofix-1-4

« back to all changes in this revision

Viewing changes to ubuntu_sso/qt/controllers.py

  • Committer: Tarmac
  • Author(s): Diego Sarmentero
  • Date: 2011-08-06 01:31:27 UTC
  • mfrom: (754.1.4 ubuntu-sso-client)
  • Revision ID: tarmac-20110806013127-g9cbempkfcpc6o5v
adding some missing titles.

Show diffs side-by-side

added added

removed removed

Lines of Context:
132
132
        """Perform the required actions to set up the ui."""
133
133
        self.view = view
134
134
        self._set_up_translated_strings()
 
135
        self.view.header.set_title(self._title)
 
136
        self.view.header.set_subtitle(self._subtitle)
135
137
        self._connect_buttons()
136
138
    #pylint: enable=C0103
137
139
 
243
245
        """Setup the view."""
244
246
        self.view = view
245
247
        self.backend = yield self.get_backend()
 
248
        self.view.header.set_title(self._title)
 
249
        self.view.header.set_subtitle(self._subtitle)
246
250
        self._set_translated_strings()
247
251
        self._connect_ui()
248
252
    #pylint: enable=C0103