From a779675fd50db582b28d8d2ad0ed35f7d3a24c7f Mon Sep 17 00:00:00 2001 From: Alex Roitman Date: Tue, 31 May 2005 18:21:01 +0000 Subject: [PATCH] Update svn: r4742 --- src/AutoComp.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/AutoComp.py b/src/AutoComp.py index 07ff9f020..55cd60232 100644 --- a/src/AutoComp.py +++ b/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.