diff options
Diffstat (limited to 'krec/krecconfigure.cpp')
-rw-r--r-- | krec/krecconfigure.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/krec/krecconfigure.cpp b/krec/krecconfigure.cpp index 65cb7497..5201c28d 100644 --- a/krec/krecconfigure.cpp +++ b/krec/krecconfigure.cpp @@ -151,17 +151,17 @@ void KRecConfigGeneral::defaults() { void KRecConfigGeneral::displaychanged( int index ) { int verbose = _displaymode / 100; - if ( _displaybox->tqfind( index ) == _display0 ) _displaymode = 0 + verbose * 100; - if ( _displaybox->tqfind( index ) == _display1 ) _displaymode = 1 + verbose * 100; - if ( _displaybox->tqfind( index ) == _display2 ) _displaymode = 2 + verbose * 100; - if ( _displaybox->tqfind( index ) == _display3 ) _displaymode = 3 + verbose * 100; + if ( _displaybox->find( index ) == _display0 ) _displaymode = 0 + verbose * 100; + if ( _displaybox->find( index ) == _display1 ) _displaymode = 1 + verbose * 100; + if ( _displaybox->find( index ) == _display2 ) _displaymode = 2 + verbose * 100; + if ( _displaybox->find( index ) == _display3 ) _displaymode = 3 + verbose * 100; emit changed( true ); } void KRecConfigGeneral::framebasechanged( int index ) { - if ( _framebasebox->tqfind( index ) == _framebase30 ) _framebase = 30; - if ( _framebasebox->tqfind( index ) == _framebase25 ) _framebase = 25; - if ( _framebasebox->tqfind( index ) == _framebase75 ) _framebase = 75; - if ( _framebasebox->tqfind( index ) == _framebaseother ) { + if ( _framebasebox->find( index ) == _framebase30 ) _framebase = 30; + if ( _framebasebox->find( index ) == _framebase25 ) _framebase = 25; + if ( _framebasebox->find( index ) == _framebase75 ) _framebase = 75; + if ( _framebasebox->find( index ) == _framebaseother ) { _framebaseotherbox->setEnabled( true ); _framebase = _framebaseotherline->text().toInt(); kdDebug(60005) << k_funcinfo << "Framebase=" << _framebase << endl; |