Spostata funzione nella versione window

git-svn-id: svn://10.65.10.50/trunk@786 c028cbd2-c16b-5b4b-a496-9718f37d4682
This commit is contained in:
alex 1994-12-21 11:21:05 +00:00
parent d4dfe35c11
commit 2e12d37e1a

View File

@ -427,6 +427,16 @@ void TSpreadsheet::update(int row)
}
void TSpreadsheet::notify_change()
{
if (!_row_dirty)
{
notify(_cur_rec, K_SPACE);
_row_dirty = TRUE;
}
}
void TSpreadsheet::xiev_handler(XI_OBJ *itf, XI_EVENT *xiev)
{
TSpreadsheet* es = (TSpreadsheet*)xi_get_app_data(itf);
@ -434,7 +444,6 @@ void TSpreadsheet::xiev_handler(XI_OBJ *itf, XI_EVENT *xiev)
es->list_handler(xiev);
}
// Certified 75%
void TSpreadsheet::list_handler(XI_EVENT *xiev)
{
@ -1112,15 +1121,6 @@ bool TSpreadsheet::notify(int rec, KEY k)
return ok;
}
void TSpreadsheet::notify_change()
{
if (!_row_dirty)
{
notify(_cur_rec, K_SPACE);
_row_dirty = TRUE;
}
}
// Certified 99%
#if XVT_OS != XVT_OS_WIN
KEY TSpreadsheet::edit(int n, KEY tasto)