]> git.lyx.org Git - lyx.git/blobdiff - src/support/Timeout.cpp
Replace the text class shared ptr by good old index-into-global-list.
[lyx.git] / src / support / Timeout.cpp
index a736a89278cbfcd8930d1ffc0ef70af889c373c8..31f1aeb231d59ac263112d257c7c6f84c311d432 100644 (file)
@@ -16,6 +16,8 @@
 #include <QObject>
 #include <QTimerEvent>
 
+using namespace std;
+
 namespace lyx {
 
 /**
@@ -60,7 +62,7 @@ void Timeout::Impl::reset()
 void Timeout::Impl::start()
 {
        if (running())
-               lyxerr << "Timeout::start: already running!" << std::endl;
+               lyxerr << "Timeout::start: already running!" << endl;
        timeout_id = startTimer(timeout_ms());
 }