diff options
author | lvw <lvw@e10066b5-e1e2-0310-b819-94efdf66514b> | 2004-10-06 19:40:18 +0000 |
---|---|---|
committer | lvw <lvw@e10066b5-e1e2-0310-b819-94efdf66514b> | 2004-10-06 19:40:18 +0000 |
commit | bd285704d7cc8eb24725ee1af3a48c2ee18fa27b (patch) | |
tree | 8e4aa417023828b8572b4c426f414bbd1a7c0d04 /mg_content_interface.h | |
parent | 53564f64951ace9983bf1afe6c13f7d07a220435 (diff) | |
download | vdr-plugin-muggle-bd285704d7cc8eb24725ee1af3a48c2ee18fa27b.tar.gz vdr-plugin-muggle-bd285704d7cc8eb24725ee1af3a48c2ee18fa27b.tar.bz2 |
Removed compiler warnings and some errors
git-svn-id: https://vdr-muggle.svn.sourceforge.net/svnroot/vdr-muggle/trunk/muggle-plugin@206 e10066b5-e1e2-0310-b819-94efdf66514b
Diffstat (limited to 'mg_content_interface.h')
-rwxr-xr-x | mg_content_interface.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mg_content_interface.h b/mg_content_interface.h index d8bb0ec..b0a27eb 100755 --- a/mg_content_interface.h +++ b/mg_content_interface.h @@ -318,12 +318,12 @@ class mgTracklist * * \todo needed? if so, it hides bool remove(int) */ - virtual int remove(mgContentItem* item); // remove all occurences of item + virtual int removeItem(mgContentItem* item); // remove all occurences of item /*! * \brief remove all occurences of item */ - virtual bool remove(unsigned int position); // remove item at position + virtual bool remove(int position); // remove item at position }; /*! |