diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2006-12-01 15:09:10 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2006-12-01 15:09:10 +0100 |
commit | 83ad7bf6e49773b4cdeb265908ab6b921c12e4a3 (patch) | |
tree | 4534fefdf48b4a973fa4766c028b21672802ad4a /recording.h | |
parent | 2bdf515ace3ce4b1d4bf42a1b6a6876c03e5ef64 (diff) | |
download | vdr-83ad7bf6e49773b4cdeb265908ab6b921c12e4a3.tar.gz vdr-83ad7bf6e49773b4cdeb265908ab6b921c12e4a3.tar.bz2 |
Added a missing 'const' to cRecordingInfo::ChannelID()
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 def351f8..f9db505d 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 1.55 2006/07/30 10:24:07 kls Exp $ + * $Id: recording.h 1.56 2006/12/01 15:06:07 kls Exp $ */ #ifndef __RECORDING_H @@ -50,7 +50,7 @@ private: void SetAux(const char *Aux); public: ~cRecordingInfo(); - tChannelID ChannelID(void) { return channelID; } + tChannelID ChannelID(void) const { return channelID; } const char *Title(void) const { return event->Title(); } const char *ShortText(void) const { return event->ShortText(); } const char *Description(void) const { return event->Description(); } |