From 916da87bf4b739215aa921cda97a36b816e5ba41 Mon Sep 17 00:00:00 2001 From: Andreas Mair Date: Sat, 29 May 2010 16:47:56 +0200 Subject: Version 1.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). --- tools.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'tools.h') diff --git a/tools.h b/tools.h index 4e5fdeb..72babbe 100644 --- a/tools.h +++ b/tools.h @@ -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;} -- cgit v1.2.3