[gyrus/gyrus-python] FIX undeclared var in _on_users_selection_changed()



commit 7391314016b7ec3a3b12fe046a80c8998c91281d
Author: Alejandro Valdes Jimenez <avaldes gnome org>
Date:   Fri Oct 16 13:20:19 2009 -0300

    FIX undeclared var in _on_users_selection_changed()

 ChangeLog                  |    7 +++++++
 src/GyrusAdmin.py          |    2 +-
 src/GyrusMailboxesStore.py |    1 +
 3 files changed, 9 insertions(+), 1 deletions(-)
---
diff --git a/ChangeLog b/ChangeLog
index 8b90c96..1f015e6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2009-10-16  Francisco Rojas  <frojas alumnos utalca cl>
+
+	* src/GyrusAdmin.py: delete undeclared var used in the method 
+	_on_users_selection_changed()
+	Fixes bug #598696
+
+
 2009-07-09  Alejandro Valdes jimenez  <avaldes gnome org>
 
 	* src/GyrusExpport.py: add script for export data to CSV format.
diff --git a/src/GyrusAdmin.py b/src/GyrusAdmin.py
index 4304b3d..7b09caa 100644
--- a/src/GyrusAdmin.py
+++ b/src/GyrusAdmin.py
@@ -212,7 +212,7 @@ class GyrusAdmin(gtk.VBox):
         if res == True:
             self.show_quota(mailbox, quota, free)
         else:
-            self.show_quota(admin, mailbox, 0, 0)
+            self.show_quota(mailbox, 0, 0)
             gyrus_util.show_message(msg, gtk.MESSAGE_ERROR)
         self.entry_quota_new.set_properties(editable=True)
 
diff --git a/src/GyrusMailboxesStore.py b/src/GyrusMailboxesStore.py
index f0e68c0..54d2c2e 100644
--- a/src/GyrusMailboxesStore.py
+++ b/src/GyrusMailboxesStore.py
@@ -61,6 +61,7 @@ class GyrusMailboxesStore(gtk.TreeStore):
                 COLUMN_MAILBOX, name_mailbox,
                 COLUMN_QUOTA_ASSIGNED, quota,
                 COLUMN_FREE, free)
+
     
     def get_name_mailbox(self, iter):
         name = self.get(iter, COLUMN_MAILBOX)



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]