]> git.lyx.org Git - features.git/commitdiff
* src/frontends/qt4/GuiWorkArea.C:
authorJürgen Spitzmüller <spitz@lyx.org>
Tue, 27 Mar 2007 17:31:29 +0000 (17:31 +0000)
committerJürgen Spitzmüller <spitz@lyx.org>
Tue, 27 Mar 2007 17:31:29 +0000 (17:31 +0000)
- 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

index 520cb5a50f714320e742ce89617e24bb90bae636..0d28ddac1a432bf178194a2a91c5a3995f110368 100644 (file)
@@ -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);
 }