remove Pending debug message

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3807 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Lars Gullik Bjønnes 2002-03-21 21:51:34 +00:00
parent f7ba7c8e9f
commit 5baf856e00
2 changed files with 3 additions and 4 deletions

View File

@ -1,5 +1,7 @@
2002-03-21 Lars Gullik Bjønnes <larsbj@birdstep.com>
* WorkArea.C: remove 'Pending' debug message.
* most files: ws cleanup
* buffer.[Ch]: ws changes

View File

@ -71,10 +71,7 @@ extern "C" {
static
int C_WorkAreaEventCB(FL_FORM * form, void * xev) {
WorkArea * wa = static_cast<WorkArea*>(form->u_vdata);
int ret = wa->event_cb(static_cast<XEvent*>(xev));
lyxerr << "Pending: " << XPending(fl_get_display()) << endl;
return ret;
return wa->event_cb(static_cast<XEvent*>(xev));
}
}