From: Jean-Paul Saman Date: Sat, 22 Dec 2007 13:10:39 +0000 (+0000) Subject: First page is 100 by default X-Git-Tag: 0.9.0-test0~3932 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=3d979f8e505c0d1dc5c51029ed71ab8c46046206;p=vlc First page is 100 by default --- diff --git a/modules/gui/qt4/input_manager.cpp b/modules/gui/qt4/input_manager.cpp index 9bb4992194..405fbbf36e 100644 --- a/modules/gui/qt4/input_manager.cpp +++ b/modules/gui/qt4/input_manager.cpp @@ -239,7 +239,6 @@ void InputManager::sectionMenu() #ifdef ZVBI_COMPILED void InputManager::telexGotoPage( int page ) { - // TODO: this has only sense when telx codec is available if( hasInput() ) { vlc_object_t *p_vbi; @@ -255,12 +254,15 @@ void InputManager::telexGotoPage( int page ) void InputManager::telexToggle( bool b_enabled ) { - //TODO + int i_page = 0; + + if( b_enabled ) + i_page = 100; + telexGotoPage( i_page ); } void InputManager::telexSetTransparency( bool b_transp ) { - // TODO: this has only sense when telx codec is available if( hasInput() ) { vlc_object_t *p_vbi;