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 a749296f93
commit 9c0d05f789
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);
}
}