# HG changeset patch
# User Adrian Buehlmann <adr...@cadifra.com>
# Date 1254607043 -7200
# Node ID 526c75476860720cc1c8df47b8dba7fe9c235108
# Parent  df3ade6a0a8399f40f2e34b828178c41759698bc
histdetails: fix typo in variable name

diff --git a/tortoisehg/hgtk/histdetails.py b/tortoisehg/hgtk/histdetails.py
--- a/tortoisehg/hgtk/histdetails.py
+++ b/tortoisehg/hgtk/histdetails.py
@@ -43,9 +43,9 @@ class LogDetailsDialog(gtk.Dialog):
         self.vbox.pack_start(mainhbox)
         
         leftvbox = gtk.VBox()
-        rightvox = gtk.VBox()
+        rightvbox = gtk.VBox()
         mainhbox.pack_start(leftvbox, True, True)
-        mainhbox.pack_start(rightvox, False, False)
+        mainhbox.pack_start(rightvbox, False, False)
 
         tv = self.tv = gtk.TreeView(model)
         tv.set_headers_visible(False)
@@ -83,8 +83,8 @@ class LogDetailsDialog(gtk.Dialog):
         self.down_button = gtk.Button(_('Move Down'))
         self.down_button.connect('clicked', self.down_clicked)
 
-        rightvox.pack_start(self.up_button, False, False)
-        rightvox.pack_start(self.down_button, False, False, 4)
+        rightvbox.pack_start(self.up_button, False, False)
+        rightvbox.pack_start(self.down_button, False, False, 4)
 
         self.show_all()
 

------------------------------------------------------------------------------
Come build with us! The BlackBerry&reg; Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay 
ahead of the curve. Join us from November 9&#45;12, 2009. Register now&#33;
http://p.sf.net/sfu/devconf
_______________________________________________
Tortoisehg-develop mailing list
Tortoisehg-develop@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tortoisehg-develop

Reply via email to