From 1bed90520c669386bc88e0fbc12de421fe3bf917 Mon Sep 17 00:00:00 2001 From: Alex Roitman Date: Tue, 31 May 2005 18:21:01 +0000 Subject: [PATCH] Update svn: r4742 --- gramps2/src/AutoComp.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gramps2/src/AutoComp.py b/gramps2/src/AutoComp.py index 07ff9f020..55cd60232 100644 --- a/gramps2/src/AutoComp.py +++ b/gramps2/src/AutoComp.py @@ -76,11 +76,11 @@ class StandardCustomSelector: options or entering custom string. The typical usage should be: - sce = StandardCustomSelector(mapping,custom_key,active_key) - whatever_table.attach(sce,...) + scs = StandardCustomSelector(mapping,custom_key,active_key) + whatever_table.attach(scs,...) and later, when or before the dialog is closed, do: - (i,s) = sce.get_values() + (i,s) = scs.get_values() to obtain the tuple of (int,str) corresponding to the user selection.