* QContentPane.C: fix cut-and-paste borkage from

LFUN_MOUSE changes


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5144 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
John Levon 2002-08-28 22:18:03 +00:00
parent b6453203d2
commit b90722d753
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2002-08-28 John Levon <levon@movementarian.org>
* QContentPane.C: fix cut-and-paste borkage from
LFUN_MOUSE changes
2002-08-25 Rob Lahaye <lahaye@snu.ac.kr>
* QLImage.C: replace redundant xoffset_l and yoffset_t

View File

@ -114,7 +114,7 @@ void QContentPane::mouseReleaseEvent(QMouseEvent * e)
void QContentPane::mouseMoveEvent(QMouseEvent * e)
{
FuncRequest cmd
(LFUN_MOUSE_RELEASE, e->x(), e->y(), q_motion_state(e->button()));
(LFUN_MOUSE_MOTION, e->x(), e->y(), q_motion_state(e->state()));
wa_->dispatch(cmd);
}