diff options
author | lado <herrlado@gmail.com> | 2012-03-20 22:30:45 +0100 |
---|---|---|
committer | lado <herrlado@gmail.com> | 2012-03-20 22:30:45 +0100 |
commit | 39825c9ecd86f779ef068065c3d13d77a80ac834 (patch) | |
tree | 1b0160a11cb6ce96f0997f9a110e3af891f4f4e4 /vdr-vdrmanager/helpers.h | |
parent | 9fff32d1b42abd7e91766daa31b089730f15b291 (diff) | |
download | vdr-manager-39825c9ecd86f779ef068065c3d13d77a80ac834.tar.gz vdr-manager-39825c9ecd86f779ef068065c3d13d77a80ac834.tar.bz2 |
avoid some errors
Diffstat (limited to 'vdr-vdrmanager/helpers.h')
-rw-r--r-- | vdr-vdrmanager/helpers.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/vdr-vdrmanager/helpers.h b/vdr-vdrmanager/helpers.h index d610084..073a76c 100644 --- a/vdr-vdrmanager/helpers.h +++ b/vdr-vdrmanager/helpers.h @@ -58,8 +58,8 @@ private: static string Error(const string &error); static string SetTimerIntern(char c, string params); static int RecordingLengthInSeconds(cRecording* recording); - static std::string cHelpers::ConvertWeekdays(int v); - static int cHelpers::ConvertWeekdays(std::string v); - static std::stack<int> cHelpers::ConvertToBinary(int v); + static string ConvertWeekdays(int v); + static int ConvertWeekdays(string v); + static stack<int> ConvertToBinary(int v); }; |