mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Removed unused 'offset' member from cOsdItem
This commit is contained in:
parent
bc269db4fc
commit
02ae3e98d4
1
HISTORY
1
HISTORY
@ -4096,3 +4096,4 @@ Video Disk Recorder Revision History
|
||||
Petri Hintukainen). If you want to use "fadvise", you can activate the line
|
||||
//#define USE_FADVISE
|
||||
in tools.c.
|
||||
- Removed unused 'offset' member from cOsdItem.
|
||||
|
@ -4,7 +4,7 @@
|
||||
* See the main source file 'vdr.c' for copyright information and
|
||||
* how to reach the author.
|
||||
*
|
||||
* $Id: osdbase.c 1.24 2005/10/09 10:56:26 kls Exp $
|
||||
* $Id: osdbase.c 1.25 2006/01/05 12:42:00 kls Exp $
|
||||
*/
|
||||
|
||||
#include "osdbase.h"
|
||||
@ -19,7 +19,6 @@
|
||||
cOsdItem::cOsdItem(eOSState State)
|
||||
{
|
||||
text = NULL;
|
||||
offset = -1;
|
||||
state = State;
|
||||
selectable = true;
|
||||
fresh = true;
|
||||
@ -28,7 +27,6 @@ cOsdItem::cOsdItem(eOSState State)
|
||||
cOsdItem::cOsdItem(const char *Text, eOSState State, bool Selectable)
|
||||
{
|
||||
text = NULL;
|
||||
offset = -1;
|
||||
state = State;
|
||||
selectable = Selectable;
|
||||
fresh = true;
|
||||
|
@ -4,7 +4,7 @@
|
||||
* See the main source file 'vdr.c' for copyright information and
|
||||
* how to reach the author.
|
||||
*
|
||||
* $Id: osdbase.h 1.12 2005/10/02 09:18:20 kls Exp $
|
||||
* $Id: osdbase.h 1.13 2006/01/05 12:42:11 kls Exp $
|
||||
*/
|
||||
|
||||
#ifndef __OSDBASE_H
|
||||
@ -49,7 +49,6 @@ enum eOSState { osUnknown,
|
||||
class cOsdItem : public cListObject {
|
||||
private:
|
||||
char *text;
|
||||
int offset;
|
||||
eOSState state;
|
||||
bool selectable;
|
||||
protected:
|
||||
|
Loading…
Reference in New Issue
Block a user