]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt2/Timeout_pimpl.h
Some string(widget->text()) fixes. Weirdness
[lyx.git] / src / frontends / qt2 / Timeout_pimpl.h
index 25357ec69df8f205817fc46f2a6c1e1eb4c6858e..e1b3c4bd28949c808ae6ff3d0d4d42140ed1dca4 100644 (file)
@@ -1,26 +1,24 @@
 // -*- C++ -*-
 /**
  * \file qt2/Timeout_pimpl.h
- * Copyright 2001 LyX Team
- * Read COPYING
+ * 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
  */
 
 #ifndef TIMEOUTPIMPL_H
 #define TIMEOUTPIMPL_H
 
-#include <config.h>
-
 #ifdef __GNUG__
 #pragma interface
 #endif
 
 #include "frontends/Timeout.h"
-
-#include <sigc++/signal_system.h>
-
 #include <qobject.h>
+
 // stupid Qt
 #undef emit
 
@@ -40,14 +38,13 @@ public:
        void reset();
        /// is the timer running ?
        bool running() const;
-
 protected:
        /// slot
        virtual void timerEvent(QTimerEvent *);
 private:
        /// the owning timer
        Timeout * owner_;
-       /// xforms id
+       /// QTimer id
        int timeout_id;
 };