diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2008-02-10 14:11:47 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2008-02-10 14:11:47 +0100 |
commit | 56f1b1b741f45feefd499c8f3a4343734d72debd (patch) | |
tree | 41d73b3fe1f8b5c9aa50937463f0f408941e030e /channels.c | |
parent | e1eb84db4908465b44a5ed685c62912a694607a6 (diff) | |
download | vdr-56f1b1b741f45feefd499c8f3a4343734d72debd.tar.gz vdr-56f1b1b741f45feefd499c8f3a4343734d72debd.tar.bz2 |
Some code cleanup
Diffstat (limited to 'channels.c')
-rw-r--r-- | channels.c | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: channels.c 1.57 2008/02/08 13:43:07 kls Exp $ + * $Id: channels.c 1.58 2008/02/10 14:11:47 kls Exp $ */ #include "channels.h" @@ -18,7 +18,7 @@ // format characters in order to allow any number of blanks after a numeric // value! -// -- Channel Parameter Maps ------------------------------------------------- +// --- Channel Parameter Maps ------------------------------------------------ const tChannelParameterMap InversionValues[] = { { 0, INVERSION_OFF }, @@ -123,7 +123,7 @@ int MapToDriver(int Value, const tChannelParameterMap *Map) return -1; } -// -- tChannelID ------------------------------------------------------------- +// --- tChannelID ------------------------------------------------------------ const tChannelID tChannelID::InvalidID; @@ -158,7 +158,7 @@ tChannelID &tChannelID::ClrPolarization(void) return *this; } -// -- cChannel --------------------------------------------------------------- +// --- cChannel -------------------------------------------------------------- cChannel::cChannel(void) { @@ -850,7 +850,7 @@ bool cChannel::Save(FILE *f) return fprintf(f, "%s", *ToText()) > 0; } -// -- cChannelSorter --------------------------------------------------------- +// --- cChannelSorter -------------------------------------------------------- class cChannelSorter : public cListObject { public: @@ -866,7 +866,7 @@ public: } }; -// -- cChannels -------------------------------------------------------------- +// --- cChannels ------------------------------------------------------------- cChannels Channels; |