From 81f45add9238b53413e6e945b0df54797513a137 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Spitzm=C3=BCller?= Date: Tue, 27 Mar 2007 17:31:29 +0000 Subject: [PATCH] * src/frontends/qt4/GuiWorkArea.C: - whitespace. I forgot to save the changes before committing :-( git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@17595 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/frontends/qt4/GuiWorkArea.C | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/frontends/qt4/GuiWorkArea.C b/src/frontends/qt4/GuiWorkArea.C index 520cb5a50f..0d28ddac1a 100644 --- a/src/frontends/qt4/GuiWorkArea.C +++ b/src/frontends/qt4/GuiWorkArea.C @@ -318,7 +318,7 @@ void GuiWorkArea::mouseReleaseEvent(QMouseEvent * e) void GuiWorkArea::mouseMoveEvent(QMouseEvent * e) { - //we kill the triple click if we move + // we kill the triple click if we move doubleClickTimeout(); FuncRequest cmd(LFUN_MOUSE_MOTION, e->x(), e->y(), q_motion_state(e->buttons())); @@ -430,10 +430,11 @@ void GuiWorkArea::doubleClickTimeout() { void GuiWorkArea::mouseDoubleClickEvent(QMouseEvent * e) { dc_event_ = double_click(e); - QTimer::singleShot(QApplication::doubleClickInterval(), this, SLOT(doubleClickTimeout())); + QTimer::singleShot(QApplication::doubleClickInterval(), this, + SLOT(doubleClickTimeout())); FuncRequest cmd(LFUN_MOUSE_DOUBLE, - e->x(), e->y(), - q_button_state(e->button())); + e->x(), e->y(), + q_button_state(e->button())); dispatch(cmd); }