aboutsummaryrefslogtreecommitdiff
path: root/text.c
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2007-11-24 07:00:45 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2007-11-24 07:00:45 +0000
commit397f32c7485ac4ce497423e9cec2c21f5deffa52 (patch)
tree0e3caaeac72d7ac00fbd149feedbce66a3b01e87 /text.c
parentb1ffed4b75b42b7e86899b4e8859f3b543418394 (diff)
- got the basics of checkbutton working, but I don't think it's saving yet.
- fixed minor namespace bug in text.c svn path=/trunk/externals/tkwidgets/; revision=9033
Diffstat (limited to 'text.c')
-rw-r--r--text.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/text.c b/text.c
index aa66ab8..45574d5 100644
--- a/text.c
+++ b/text.c
@@ -161,7 +161,7 @@ static void create_widget(t_textwidget *x)
{
DEBUG(post("create_widget"););
- sys_vgui("namespace eval text%lx {} \n", x);
+ sys_vgui("namespace eval %s {} \n", x->tcl_namespace->s_name);
/* Seems we have to delete the widget in case it already exists (Provided by Guenter)*/
sys_vgui("destroy %s\n", x->frame_id->s_name);