tvonscreen plugin broken with vdr 1.3.44

Message ID 44049CE2.8070502@fliegl.de
State New
Headers

Commit Message

Deti Fliegl Feb. 28, 2006, 6:56 p.m. UTC
  Hi,

tvonscreen 0.7.0 with vdr version 1.3.44 seems to be broken (last 
working version was 1.3.42):

vdr: /home/video/plugins/lib/libvdr-tvonscreen.so.1.3.44: undefined 
symbol: _ZN10cMenuEventC2EPK6cEventb

Deti

For me this little patch was needed:

  };
  

Patch

--- tvonscreen/timer.h~    2006-02-28 19:47:38.000000000 +0100
+++ tvonscreen/timer.h     2006-02-28 19:47:38.000000000 +0100
@@ -20,7 +20,7 @@ 
  private:
    const cEvent *event;
  public:
-  cMenuEvent(const cEvent *Event, bool CanSwitch = false);
+  cMenuEvent(const cEvent *Event, bool CanSwitch = false, bool Buttons 
= false);
    virtual void Display(void);
    virtual eOSState ProcessKey(eKeys Key);