diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2013-10-10 13:13:30 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2013-10-10 13:13:30 +0200 |
commit | 2bdb599fbcfea5bac49fcf5550cd0fd1bc328d4a (patch) | |
tree | 88e9d6c0b7505f1c4d9374c26a4c3ee27dd6ee90 /shutdown.c | |
parent | 3971cc6e8845f2a70018b20706f4a30d71edd41d (diff) | |
download | vdr-2bdb599fbcfea5bac49fcf5550cd0fd1bc328d4a.tar.gz vdr-2bdb599fbcfea5bac49fcf5550cd0fd1bc328d4a.tar.bz2 |
Added renaming and moving recordings and folders, and editing a recording's priority and lifetime; added cutting queue
Diffstat (limited to 'shutdown.c')
-rw-r--r-- | shutdown.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -6,7 +6,7 @@ * * Original version written by Udo Richter <udo_richter@gmx.de>. * - * $Id: shutdown.c 2.1 2013/02/18 10:33:26 kls Exp $ + * $Id: shutdown.c 3.1 2013/10/02 09:02:01 kls Exp $ */ #include "shutdown.h" @@ -16,11 +16,11 @@ #include <sys/wait.h> #include "channels.h" #include "config.h" -#include "cutter.h" #include "i18n.h" #include "interface.h" #include "menu.h" #include "plugin.h" +#include "recording.h" #include "timers.h" #include "tools.h" @@ -167,7 +167,7 @@ bool cShutdownHandler::ConfirmShutdown(bool Interactive) Skins.Message(mtError, tr("Can't shutdown - option '-s' not given!")); return false; } - if (cCutter::Active()) { + if (RecordingsHandler.Active()) { if (!Interactive || !Interface->Confirm(tr("Editing - shut down anyway?"))) return false; } @@ -210,7 +210,7 @@ bool cShutdownHandler::ConfirmShutdown(bool Interactive) bool cShutdownHandler::ConfirmRestart(bool Interactive) { - if (cCutter::Active()) { + if (RecordingsHandler.Active()) { if (!Interactive || !Interface->Confirm(tr("Editing - restart anyway?"))) return false; } |