diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2001-07-27 11:51:42 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2001-07-27 11:51:42 +0200 |
commit | d008680ad78832701d59d54733d302c0287bc879 (patch) | |
tree | ccc96e0337f835041be1e8f79d7b82eca48da9ac /interface.h | |
parent | 81919a6647b6c02e8ea368ae0c88db367341c769 (diff) | |
download | vdr-d008680ad78832701d59d54733d302c0287bc879.tar.gz vdr-d008680ad78832701d59d54733d302c0287bc879.tar.bz2 |
Made the width and height of the OSD configurable
Diffstat (limited to 'interface.h')
-rw-r--r-- | interface.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/interface.h b/interface.h index 50c37615..2b0e2f1a 100644 --- a/interface.h +++ b/interface.h @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: interface.h 1.21 2000/12/09 10:48:41 kls Exp $ + * $Id: interface.h 1.22 2001/07/27 11:38:01 kls Exp $ */ #ifndef __INTERFACE_H @@ -32,7 +32,7 @@ private: public: cInterface(int SVDRPport = 0); ~cInterface(); - void Open(int NumCols = MenuColumns, int NumLines = MenuLines); + void Open(int NumCols = 0, int NumLines = 0); void Close(void); int Width(void) { return width; } int Height(void) { return height; } |