summaryrefslogtreecommitdiff
path: root/timers.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'timers.cpp')
-rw-r--r--timers.cpp14
1 files changed, 9 insertions, 5 deletions
diff --git a/timers.cpp b/timers.cpp
index 2690d6f..30ccc41 100644
--- a/timers.cpp
+++ b/timers.cpp
@@ -1,12 +1,16 @@
-#include <memory>
-#include <sstream>
-#include <vector>
-#include "exception.h"
+
#include "timers.h"
+
+#include "exception.h"
#include "tools.h"
-#include "i18n.h"
#include "autoptr.h"
+// STL headers need to be before VDR tools.h (included by <vdr/plugin.h>)
+#include <sstream>
+
+#include <vdr/plugin.h>
+#include <vdr/menu.h>
+
static bool operator<( cTimer const& left, cTimer const& right )
{
return left.Compare( right ) < 0;