libsaria: Fix compile errors

g++ must have gotten updated...

Signed-off-by: Bryan Schumaker <bjschuma@gmail.com>
This commit is contained in:
Bryan Schumaker 2012-04-04 07:51:42 -04:00
parent 8869b2aaed
commit 2fb2f97a43
3 changed files with 4 additions and 4 deletions

View File

@ -57,7 +57,7 @@ namespace libsaria
public:
Playlist(string, unsigned int, PlaylistType);
~Playlist();
virtual ~Playlist();
void set_renderer(PlaylistRenderer *);
PlaylistRenderer *get_renderer();

View File

@ -14,7 +14,7 @@ namespace libsaria
public:
PlaylistRenderer(unsigned int);
~PlaylistRenderer();
virtual ~PlaylistRenderer();
void set_playlist(Playlist *);
Playlist *get_playlist();
virtual void renumbered(int);

View File

@ -81,6 +81,6 @@ string open_pipe(string filename)
void close_pipes()
{
list<string>::iterator it;
for (it = open_pipes.begin(); it != open_pipes.end(); it++)
unlink((*it).c_str());
/*for (it = open_pipes.begin(); it != open_pipes.end(); it++)
unlink((*it).c_str());*/
}