/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 checkout.py

  • Committer: Jelmer Vernooij
  • Date: 2011-02-18 13:16:37 UTC
  • mto: This revision was merged to the branch mainline in revision 714.
  • Revision ID: jelmer@samba.org-20110218131637-jo72qis53vvu0zud
'bzr viz' now shows authors instead of committers.

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
from dialog import error_dialog
34
34
 
35
35
from history import UrlHistory
36
 
from olive import Preferences
37
36
 
38
37
class CheckoutDialog(gtk.Dialog):
39
38
    """ New implementation of the Checkout dialog. """
55
54
        self._combo = gtk.ComboBoxEntry()
56
55
        self._label_location = gtk.Label(_i18n("Branch location:"))
57
56
        self._label_destination = gtk.Label(_i18n("Destination:"))
58
 
        self._label_nick = gtk.Label(_i18n("Branck nick:"))
 
57
        self._label_nick = gtk.Label(_i18n("Branch nick:"))
59
58
        self._label_revision = gtk.Label(_i18n("Revision:"))
60
59
        self._hbox_revision = gtk.HBox()
61
60
        self._entry_revision = gtk.Entry()
117
116
        for item in self._history.get_entries():
118
117
            self._combo_model.append([ item ])
119
118
        
120
 
        pref = Preferences()
121
 
        for item in pref.get_bookmarks():
122
 
            self._combo_model.append([ item ])
123
 
        
124
119
        self._combo.set_model(self._combo_model)
125
120
        self._combo.set_text_column(0)
126
121