diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2013-03-03 11:04:22 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2013-03-03 11:04:22 +0100 |
commit | f239934bf99abcb910002526bf95d226ac66ce03 (patch) | |
tree | ffd2cf2977246b88fab3323026bf600b85df4080 /recording.h | |
parent | e0448bded8d69568291e5ce1e515396dad97d0c9 (diff) | |
download | vdr-f239934bf99abcb910002526bf95d226ac66ce03.tar.gz vdr-f239934bf99abcb910002526bf95d226ac66ce03.tar.bz2 |
When sorting recordings by name, folders are now always at the top of the list
Diffstat (limited to 'recording.h')
-rw-r--r-- | recording.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/recording.h b/recording.h index 48d6f683..4807fc9d 100644 --- a/recording.h +++ b/recording.h @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: recording.h 2.44 2013/02/14 15:13:14 kls Exp $ + * $Id: recording.h 2.45 2013/03/03 10:48:39 kls Exp $ */ #ifndef __RECORDING_H @@ -97,7 +97,7 @@ private: cRecordingInfo *info; cRecording(const cRecording&); // can't copy cRecording cRecording &operator=(const cRecording &); // can't assign cRecording - static char *StripEpisodeName(char *s); + static char *StripEpisodeName(char *s, bool Strip); char *SortName(void) const; int GetResume(void) const; time_t start; |