Patch level :10

Files correlati     :
Ricompilazione Demo : [ ]
Commento            :
aggiunta la force_update ai TTreelist_window (serve per hardy)


git-svn-id: svn://10.65.10.50/branches/R_10_00@21978 c028cbd2-c16b-5b4b-a496-9718f37d4682
This commit is contained in:
luca 2011-04-19 09:14:02 +00:00
parent a372a7c6c5
commit e3bb9a83a5

View File

@ -1255,6 +1255,7 @@ public:
virtual bool goto_selected();
virtual void set_header(const char* head);
virtual void set_fields(const char* flds);
virtual void force_update();
TTreelist_window(int x, int y, int dx, int dy, WINDOW parent, TTreelist_field* owner);
virtual ~TTreelist_window() { }
@ -1557,6 +1558,12 @@ TTreelist_window::TTreelist_window(int x, int y, int dx, int dy, WINDOW parent,
}
}
void TTreelist_window::force_update()
{
TTree_window::force_update();
xvt_dwin_invalidate_rect(_ctrl, NULL);
}
///////////////////////////////////////////////////////////
// TTreelist_field
///////////////////////////////////////////////////////////