summaryrefslogtreecommitdiff
path: root/tools.h
diff options
context:
space:
mode:
authorAndreas Mair <andreas@vdr-developer.org>2010-05-29 16:47:56 +0200
committerAndreas Mair <andreas@vdr-developer.org>2010-05-29 16:47:56 +0200
commit916da87bf4b739215aa921cda97a36b816e5ba41 (patch)
treee3e1f3baa811ba9e89de99736c9e69baef42fd1f /tools.h
parentab6811d93006be2338c9711b40d1d67533a094ca (diff)
downloadvdr-plugin-extrecmenu-1.2-test1-am2b.tar.gz
vdr-plugin-extrecmenu-1.2-test1-am2b.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.h8
1 files changed, 4 insertions, 4 deletions
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;}