diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2004-12-26 12:45:22 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2004-12-26 12:45:22 +0100 |
commit | 286af66cfb787b76ee7289c920a75a3dd21ce795 (patch) | |
tree | f3c726662154652682da356ef5fa66a91a0a4675 /channels.h | |
parent | f97b1069c6bdf519fd32280b35ed66abe6c02bde (diff) | |
download | vdr-286af66cfb787b76ee7289c920a75a3dd21ce795.tar.gz vdr-286af66cfb787b76ee7289c920a75a3dd21ce795.tar.bz2 |
Made several functions threadsafe (cont'd)
Diffstat (limited to 'channels.h')
-rw-r--r-- | channels.h | 13 |
1 files changed, 6 insertions, 7 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: channels.h 1.23 2004/12/05 13:49:04 kls Exp $ + * $Id: channels.h 1.24 2004/12/26 12:15:52 kls Exp $ */ #ifndef __CHANNELS_H @@ -67,7 +67,7 @@ public: tChannelID &ClrRid(void) { rid = 0; return *this; } tChannelID &ClrPolarization(void); static tChannelID FromString(const char *s); - const char *ToString(void); + cString ToString(void); static const tChannelID InvalidID; }; @@ -87,8 +87,7 @@ class cLinkChannels : public cList<cLinkChannel> { class cChannel : public cListObject { friend class cMenuEditChannel; private: - static char *buffer; - static const char *ToText(const cChannel *Channel); + static cString ToText(const cChannel *Channel); char *name; char *shortName; char *provider; @@ -124,14 +123,14 @@ private: int modification; cLinkChannels *linkChannels; cChannel *refChannel; - const char *ParametersToString(void) const; + cString ParametersToString(void) const; bool StringToParameters(const char *s); public: cChannel(void); cChannel(const cChannel &Channel); ~cChannel(); cChannel& operator= (const cChannel &Channel); - const char *ToText(void) const; + cString ToText(void) const; bool Parse(const char *s, bool AllowNonUniqueID = false); bool Save(FILE *f); const char *Name(void) const { return name; } @@ -216,6 +215,6 @@ public: extern cChannels Channels; -const char *ChannelString(const cChannel *Channel, int Number); +cString ChannelString(const cChannel *Channel, int Number); #endif //__CHANNELS_H |