diff options
author | phintuka <phintuka> | 2008-11-18 15:17:14 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2008-11-18 15:17:14 +0000 |
commit | 0a1ad19ccb3f6306bbee5eae8a398ef81d2226fd (patch) | |
tree | 89534c9dfdd5582b58f6b0c77df06dc707cb9400 /device.c | |
parent | 987c942467ce5a0884de0d111bcc7852dd81493a (diff) | |
download | xineliboutput-0a1ad19ccb3f6306bbee5eae8a398ef81d2226fd.tar.gz xineliboutput-0a1ad19ccb3f6306bbee5eae8a398ef81d2226fd.tar.bz2 |
Call base class MakePrimaryDevice()
Diffstat (limited to 'device.c')
-rw-r--r-- | device.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: device.c,v 1.61 2008-11-18 15:14:40 phintuka Exp $ + * $Id: device.c,v 1.62 2008-11-18 15:17:14 phintuka Exp $ * */ @@ -323,6 +323,8 @@ void cXinelibDevice::MakePrimaryDevice(bool On) { TRACEF("cXinelibDevice::MakePrimaryDevice"); + cDevice::MakePrimaryDevice(On); + if(On) new cXinelibOsdProvider(this); } |