]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt2/Timeout_pimpl.C
better selection and scrolling behaviour
[lyx.git] / src / frontends / qt2 / Timeout_pimpl.C
index cd538ff5c6843758f2ba86568d09cd97d56be9bc..f7a226b753f204a2a00497b4b3676ea4a958759b 100644 (file)
@@ -1,17 +1,19 @@
 /**
- * \file Timeout_pimpl.C
- * Copyright 2001 LyX Team
- * Read COPYING
+ * \file qt2/Timeout_pimpl.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
  * \author John Levon
+ *
+ * Full author contact details are available in file CREDITS
  */
 
+#include <config.h>
+
 #ifdef __GNUG__
 #pragma implementation
 #endif
 
-#include <config.h>
-
 #include "Timeout_pimpl.h"
 #include "debug.h"
 
@@ -27,7 +29,7 @@ void Timeout::Pimpl::timerEvent(QTimerEvent *)
 {
        owner_->emit();
 }
+
 
 void Timeout::Pimpl::reset()
 {
@@ -41,14 +43,14 @@ bool Timeout::Pimpl::running() const
        return timeout_id != -1;
 }
 
+
 void Timeout::Pimpl::start()
 {
        if (running())
                lyxerr << "Timeout::start: already running!" << endl;
        timeout_id = startTimer(owner_->timeout_ms);
 }
-       
+
 
 void Timeout::Pimpl::stop()
 {