|
From: <kr_...@us...> - 2003-10-09 19:05:51
|
Update of /cvsroot/htoolkit/port/src/cbits/GTK
In directory sc8-pr-cvs1:/tmp/cvs-serv26724/src/cbits/GTK
Modified Files:
EditBox.c
Log Message:
bugfix
Index: EditBox.c
===================================================================
RCS file: /cvsroot/htoolkit/port/src/cbits/GTK/EditBox.c,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** EditBox.c 8 Oct 2003 22:21:57 -0000 1.14
--- EditBox.c 9 Oct 2003 19:05:48 -0000 1.15
***************
*** 44,55 ****
}
! void osSetEditPassword(WindowHandle entry, BOOL visible)
{
! gtk_entry_set_visibility(GTK_ENTRY(entry), visible);
}
BOOL osGetEditPassword(WindowHandle entry)
{
! return gtk_entry_get_visibility(GTK_ENTRY(entry));
}
--- 44,55 ----
}
! void osSetEditPassword(WindowHandle entry, BOOL password)
{
! gtk_entry_set_visibility(GTK_ENTRY(entry), !password);
}
BOOL osGetEditPassword(WindowHandle entry)
{
! return !gtk_entry_get_visibility(GTK_ENTRY(entry));
}
|