From 2a117cc570574099839da41a5ae9fbb2a5ca9e55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateusz=20=C5=81ukasik?= Date: Mon, 21 Apr 2014 11:53:35 +0200 Subject: Imported Upstream version 14.3.0 --- src/playlist.h | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'src/playlist.h') diff --git a/src/playlist.h b/src/playlist.h index 9d8749c..50d350c 100644 --- a/src/playlist.h +++ b/src/playlist.h @@ -1,5 +1,5 @@ /* smplayer, GUI front-end for mplayer. - Copyright (C) 2006-2013 Ricardo Villalba + Copyright (C) 2006-2014 Ricardo Villalba This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -28,10 +28,10 @@ class PlaylistItem { public: PlaylistItem() { _filename=""; _name=""; _duration=0; - _played = FALSE; _deleted=FALSE; }; + _played = false; _deleted=false; }; PlaylistItem(QString filename, QString name, double duration) { _filename = filename; _name = name; _duration = duration; - _played = FALSE; _deleted = FALSE; }; + _played = false; _deleted = false; }; ~PlaylistItem() {}; void setFilename(QString filename) { _filename = filename; }; @@ -91,6 +91,8 @@ public slots: virtual void playNext(); virtual void playPrev(); + virtual void resumePlay(); + virtual void removeSelected(); virtual void removeAll(); virtual void remove(int); -- cgit v1.2.3