Start splitting up ecdb_gui into more logic files

This commit is contained in:
Jaime Thomas
2008-12-21 01:48:31 +00:00
parent 7f0f6159a8
commit 9db32952a6
9 changed files with 252 additions and 190 deletions

View File

@ -9,13 +9,13 @@ group {
if (get_int(s) == 0)
{
set_state(PART:"check", "active", 0.0);
emit("ecdb,check,checked", "ecdb/check");
emit("ecdb,check,checked", "ecdb");
set_int(s, 1);
}
else
{
set_state(PART:"check", "default", 0.0);
emit("ecdb,check,unchecked", "ecdb/check");
emit("ecdb,check,unchecked", "ecdb");
set_int(s, 0);
}
}