diff options
author | Andreas Mair <andreas@vdr-developer.org> | 2010-05-29 16:47:56 +0200 |
---|---|---|
committer | Andreas Mair <andreas@vdr-developer.org> | 2010-05-29 16:47:56 +0200 |
commit | 916da87bf4b739215aa921cda97a36b816e5ba41 (patch) | |
tree | e3e1f3baa811ba9e89de99736c9e69baef42fd1f /tools.h | |
parent | ab6811d93006be2338c9711b40d1d67533a094ca (diff) | |
download | vdr-plugin-extrecmenu-916da87bf4b739215aa921cda97a36b816e5ba41.tar.gz vdr-plugin-extrecmenu-916da87bf4b739215aa921cda97a36b816e5ba41.tar.bz2 |
Version 1.2-test1-am2bv1.2-test1-am2b
- fixed PES cutting using cutting queue (Reported by tomas @vdr-portal.de).
- fixed some gcc warnings and errors (Based on suggestions by Zzam @vdr-portal.de).
Diffstat (limited to 'tools.h')
-rw-r--r-- | tools.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -5,7 +5,7 @@ class SortListItem:public cListObject private: std::string path; public: - SortListItem(std::string Path){path=Path;}; + SortListItem(std::string _Path){path=_Path;}; std::string Path(){return path;} }; @@ -50,7 +50,7 @@ class MoveListItem:public cListObject std::string from; std::string to; public: - MoveListItem(std::string From,std::string To){from=From;to=To;moveinprogress=false;movecanceled=false;} + MoveListItem(std::string _From,std::string _To){from=_From;to=_To;moveinprogress=false;movecanceled=false;} std::string From(){return from;} std::string To(){return to;} void SetMoveInProgress(){moveinprogress=true;} @@ -72,8 +72,8 @@ class CutterListItem:public cListObject std::string filename; std::string newfilename; public: - CutterListItem(std::string FileName){filename=FileName;cutinprogress=false;}; - void SetNewFileName(std::string NewFileName){newfilename=NewFileName;} + CutterListItem(std::string _FileName){filename=_FileName;cutinprogress=false;}; + void SetNewFileName(std::string _NewFileName){newfilename=_NewFileName;} std::string FileName(){return filename;} std::string NewFileName(){return newfilename;} void SetCutInProgress(){cutinprogress=true;} |