changeset 271:38d8908c4438

Corrected incorrect typecast.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Wed, 05 Mar 2003 19:40:45 +0000
parents d2a80e648d33
children 49ac97060328
files gtk/dw.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/gtk/dw.c	Wed Mar 05 19:38:55 2003 +0000
+++ b/gtk/dw.c	Wed Mar 05 19:40:45 2003 +0000
@@ -3429,7 +3429,7 @@
 	int _locked_by_me = FALSE;
 
 	DW_MUTEX_LOCK;
-	gtk_entry_set_max_length(handle, limit);
+	gtk_entry_set_max_length(GTK_ENTRY(handle), limit);
 	DW_MUTEX_UNLOCK;
 }