summaryrefslogtreecommitdiff
path: root/vdr-vdrmanager/helpers.h
diff options
context:
space:
mode:
authorlado <herrlado@gmail.com>2012-03-23 10:20:20 +0100
committerlado <herrlado@gmail.com>2012-03-23 10:20:20 +0100
commit603aafd44f65af6230917985e4c93f518f7a4798 (patch)
tree7ce9288adf6970e3a5e6e0f6cc9b5fbee635ebc8 /vdr-vdrmanager/helpers.h
parent421a5adede3d223019d27bd20460a7e9eca296fb (diff)
downloadvdr-manager-603aafd44f65af6230917985e4c93f518f7a4798.tar.gz
vdr-manager-603aafd44f65af6230917985e4c93f518f7a4798.tar.bz2
Timer stuff
Diffstat (limited to 'vdr-vdrmanager/helpers.h')
-rw-r--r--vdr-vdrmanager/helpers.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/vdr-vdrmanager/helpers.h b/vdr-vdrmanager/helpers.h
index 073a76c..6019438 100644
--- a/vdr-vdrmanager/helpers.h
+++ b/vdr-vdrmanager/helpers.h
@@ -11,7 +11,7 @@
#include <iostream>
#include <iomanip>
#include <sstream>
-#include <stack>
+#include <queue>
using namespace std;
@@ -60,6 +60,6 @@ private:
static int RecordingLengthInSeconds(cRecording* recording);
static string ConvertWeekdays(int v);
static int ConvertWeekdays(string v);
- static stack<int> ConvertToBinary(int v);
+ static queue<int> ConvertToBinary(int v);
};